commit | 030fb939ccf6883c70d5d04884e5b4a34527690f | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@swtch.com> | Thu Jul 03 22:40:58 2008 -0400 |
committer | Russ Cox <rsc@swtch.com> | Thu Jul 03 22:40:58 2008 -0400 |
tree | 049ef3a867acfa8368096ce6f15792afd961dd12 | |
parent | 01c1b7633c0576ad30880ce8dd96aa20e9bfdbc2 [diff] |
venti: mark checksum-queued arenas in http output
diff --git a/src/cmd/venti/srv/httpd.c b/src/cmd/venti/srv/httpd.c index 623d4e4..5a3f3c6 100644 --- a/src/cmd/venti/srv/httpd.c +++ b/src/cmd/venti/srv/httpd.c
@@ -562,6 +562,8 @@ hprint(hout, " mem=sealed"); if(arena->diskstats.sealed) hprint(hout, " disk=sealed"); + if(arena->inqueue) + hprint(hout, " inqueue"); hprint(hout, "\n"); if(scorecmp(zeroscore, arena->score) != 0) hprint(hout, "\tscore=%V\n", arena->score);