X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=index%2Frank1.c;h=d9476840889702d16284f58308c72da5d41ed782;hp=84d41592a1bc4671d8cae7f85eb22751f7d76663;hb=eb2b742588ce07fb4516bbca22c93b938b13e433;hpb=83533000f9456dcab2fc171abafd84d6104d4087 diff --git a/index/rank1.c b/index/rank1.c index 84d4159..d947684 100644 --- a/index/rank1.c +++ b/index/rank1.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: rank1.c,v $ - * Revision 1.5 1999-05-26 07:49:13 adam + * Revision 1.6 2000-03-15 15:00:30 adam + * First work on threaded version. + * + * Revision 1.5 1999/05/26 07:49:13 adam * C++ compilation. * * Revision 1.4 1999/02/02 14:51:01 adam @@ -62,7 +65,7 @@ static int log2_int (unsigned g) * create: Creates/Initialises this rank handler. This routine is * called exactly once. The routine returns the class_handle. */ -static void *create (ZebraHandle zh) +static void *create (ZebraService zh) { struct rank_class_info *ci = (struct rank_class_info *) xmalloc (sizeof(*ci)); @@ -76,7 +79,7 @@ static void *create (ZebraHandle zh) * when the handler is no longer needed - i.e. when the server * dies. The class_handle was previously returned by create. */ -static void destroy (ZebraHandle zh, void *class_handle) +static void destroy (ZebraService zh, void *class_handle) { struct rank_class_info *ci = (struct rank_class_info *) class_handle;