]> granicus.if.org Git - curl/commitdiff
Günter Knauf's update, mainly converted to plain old C comments.
authorDaniel Stenberg <daniel@haxx.se>
Wed, 17 Mar 2004 13:36:45 +0000 (13:36 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 17 Mar 2004 13:36:45 +0000 (13:36 +0000)
lib/nwlib.c

index 410a6311b9a0dce180789d2b96d80e7956ad190a..d54f4ac9636d8551e882de56e60bf6eb8d96aa65 100644 (file)
@@ -21,8 +21,6 @@
  * $Id$\r
  ***************************************************************************/\r
 \r
-/* This file is only used in the NetWare build */\r
-\r
 #include <errno.h>\r
 #include <string.h>\r
 #include <stdlib.h>\r
@@ -45,7 +43,7 @@ typedef struct
     int         y;\r
     int         z;\r
     void        *tenbytes;\r
-    NXKey_t     perthreadkey;           // if -1, no key obtained...\r
+    NXKey_t     perthreadkey;   /* if -1, no key obtained... */\r
     NXMutex_t   *lock;\r
 } libdata_t;\r
 \r
@@ -54,9 +52,7 @@ void        *gLibHandle = (void *) NULL;
 rtag_t      gAllocTag   = (rtag_t) NULL;\r
 NXMutex_t   *gLibLock   = (NXMutex_t *) NULL;\r
 \r
-\r
-\r
-// internal library function prototypes...\r
+/* internal library function prototypes... */\r
 int     DisposeLibraryData ( void * );\r
 void    DisposeThreadData ( void * );\r
 int     GetOrSetUpData ( int id, libdata_t **data, libthreaddata_t **threaddata );\r
@@ -129,18 +125,16 @@ int _NonAppStart
     return 0;\r
 }\r
 \r
-void _NonAppStop( void )\r
-{\r
 /*\r
 ** Here we clean up any resources we allocated. Resource tags is a big part\r
 ** of what we created, but NetWare doesn't ask us to free those.\r
 */\r
+void _NonAppStop( void )\r
+{\r
     (void) unregister_library(gLibId);\r
     NXMutexFree(gLibLock);\r
 }\r
 \r
-int  _NonAppCheckUnload( void )\r
-{\r
 /*\r
 ** This function cannot be the first in the file for if the file is linked\r
 ** first, then the check-unload function's offset will be nlmname.nlm+0\r
@@ -152,6 +146,8 @@ int  _NonAppCheckUnload( void )
 ** we return a non-zero value. Right now, there isn't any reason not to allow\r
 ** it.\r
 */\r
+int  _NonAppCheckUnload( void )\r
+{\r
     return 0;\r
 }\r
 \r
@@ -166,7 +162,6 @@ int GetOrSetUpData
     libdata_t           *app_data;\r
     libthreaddata_t *thread_data;\r
     NXKey_t             key;\r
-//  NXMutex_t           *lock;\r
     NX_LOCK_INFO_ALLOC(liblock, "Application Data Lock", 0);\r
 \r
     err         = 0;\r
@@ -231,10 +226,10 @@ int GetOrSetUpData
                     }\r
                     else\r
                     {\r
-                        // create key for thread-specific data...\r
+                        /* create key for thread-specific data... */\r
                         err = NXKeyCreate(DisposeThreadData, (void *) NULL, &key);\r
 \r
-                        if (err)                // (no more keys left?)\r
+                        if (err)                /* (no more keys left?) */\r
                             key = -1;\r
 \r
                         app_data->perthreadkey = key;\r
@@ -250,7 +245,7 @@ int GetOrSetUpData
     {\r
         key = app_data->perthreadkey;\r
 \r
-        if (     key != -1                  // couldn't create a key? no thread data\r
+        if (     key != -1                  /* couldn't create a key? no thread data */\r
             && !(err = NXKeyGetValue(key, (void **) &thread_data))\r
             && !thread_data)\r
         {\r
@@ -327,3 +322,5 @@ void DisposeThreadData
         free(data);\r
     }\r
 }\r
+\r
+\r