From ffb35ff5c397daae8e6681563f75dbb4e58bda00 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 17 Mar 2004 13:36:45 +0000 Subject: [PATCH] =?utf8?q?G=FCnter=20Knauf's=20update,=20mainly=20converte?= =?utf8?q?d=20to=20plain=20old=20C=20comments.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lib/nwlib.c | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/lib/nwlib.c b/lib/nwlib.c index 410a631..d54f4ac 100644 --- a/lib/nwlib.c +++ b/lib/nwlib.c @@ -21,8 +21,6 @@ * $Id$ ***************************************************************************/ -/* This file is only used in the NetWare build */ - #include #include #include @@ -45,7 +43,7 @@ typedef struct int y; int z; void *tenbytes; - NXKey_t perthreadkey; // if -1, no key obtained... + NXKey_t perthreadkey; /* if -1, no key obtained... */ NXMutex_t *lock; } libdata_t; @@ -54,9 +52,7 @@ void *gLibHandle = (void *) NULL; rtag_t gAllocTag = (rtag_t) NULL; NXMutex_t *gLibLock = (NXMutex_t *) NULL; - - -// internal library function prototypes... +/* internal library function prototypes... */ int DisposeLibraryData ( void * ); void DisposeThreadData ( void * ); int GetOrSetUpData ( int id, libdata_t **data, libthreaddata_t **threaddata ); @@ -129,18 +125,16 @@ int _NonAppStart return 0; } -void _NonAppStop( void ) -{ /* ** Here we clean up any resources we allocated. Resource tags is a big part ** of what we created, but NetWare doesn't ask us to free those. */ +void _NonAppStop( void ) +{ (void) unregister_library(gLibId); NXMutexFree(gLibLock); } -int _NonAppCheckUnload( void ) -{ /* ** This function cannot be the first in the file for if the file is linked ** first, then the check-unload function's offset will be nlmname.nlm+0 @@ -152,6 +146,8 @@ int _NonAppCheckUnload( void ) ** we return a non-zero value. Right now, there isn't any reason not to allow ** it. */ +int _NonAppCheckUnload( void ) +{ return 0; } @@ -166,7 +162,6 @@ int GetOrSetUpData libdata_t *app_data; libthreaddata_t *thread_data; NXKey_t key; -// NXMutex_t *lock; NX_LOCK_INFO_ALLOC(liblock, "Application Data Lock", 0); err = 0; @@ -231,10 +226,10 @@ int GetOrSetUpData } else { - // create key for thread-specific data... + /* create key for thread-specific data... */ err = NXKeyCreate(DisposeThreadData, (void *) NULL, &key); - if (err) // (no more keys left?) + if (err) /* (no more keys left?) */ key = -1; app_data->perthreadkey = key; @@ -250,7 +245,7 @@ int GetOrSetUpData { key = app_data->perthreadkey; - if ( key != -1 // couldn't create a key? no thread data + if ( key != -1 /* couldn't create a key? no thread data */ && !(err = NXKeyGetValue(key, (void **) &thread_data)) && !thread_data) { @@ -327,3 +322,5 @@ void DisposeThreadData free(data); } } + + -- 2.7.4