X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Frecstat.c;h=e6395929a8b5a99b63a88493b2d5e6810f259a52;hb=12cdf00008c22bb5edf92632c7236b2676a273dd;hp=c27ce8f39a8ca92437f1c01f49fc9259a9b1efbd;hpb=4c6c27a5098e5fd9425051ef97f98e898c098a20;p=idzebra-moved-to-github.git diff --git a/index/recstat.c b/index/recstat.c index c27ce8f..e639592 100644 --- a/index/recstat.c +++ b/index/recstat.c @@ -1,10 +1,23 @@ /* - * Copyright (C) 1994-1996, Index Data I/S + * Copyright (C) 1994-1998, Index Data I/S * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: recstat.c,v $ - * Revision 1.2 1996-05-14 14:04:34 adam + * Revision 1.6 1998-01-12 15:04:08 adam + * The test option (-s) only uses read-lock (and not write lock). + * + * Revision 1.5 1997/09/17 12:19:17 adam + * Zebra version corresponds to YAZ version 1.4. + * Changed Zebra server so that it doesn't depend on global common_resource. + * + * Revision 1.4 1997/09/09 13:38:08 adam + * Partial port to WIN95/NT. + * + * Revision 1.3 1996/06/04 10:19:00 adam + * Minor changes - removed include of ctype.h. + * + * Revision 1.2 1996/05/14 14:04:34 adam * In zebraidx, the 'stat' command is improved. Statistics about ISAM/DICT * is collected. * @@ -18,15 +31,14 @@ #include #include #include -#include #include +#ifndef WINDOWS #include - +#endif #include "recindxp.h" -void rec_prstat (void) +void rec_prstat (Records records) { - Records records = rec_open (0); int i; int total_bytes = 0; @@ -50,5 +62,4 @@ void rec_prstat (void) records->head.total_bytes); logf (LOG_LOG, "Total size with overhead %8d", total_bytes); - rec_close (&records); }