commit 030fb939ccf6883c70d5d04884e5b4a34527690f
parent 01c1b7633c0576ad30880ce8dd96aa20e9bfdbc2
Author: Russ Cox <rsc@swtch.com>
Date: Thu, 3 Jul 2008 22:40:58 -0400
venti: mark checksum-queued arenas in http output
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/cmd/venti/srv/httpd.c b/src/cmd/venti/srv/httpd.c
@@ -562,6 +562,8 @@ darena(Hio *hout, Arena *arena)
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);