OSDN Git Service

remove dead link as pointed out by Denis Vlasenko
[uclinux-h8/uClibc.git] / docs / threads.txt
index 21054e0..182f1be 100644 (file)
@@ -2,9 +2,7 @@ uClibc thread-safety analysis
 
 Things that are still known to be needed for thread safety:
 
-        getgrgid_r             <not implemented, required by SuSv3>
-        getgrnam_r             <not implemented, required by SuSv3>
-
+        none
 
 
 
@@ -19,6 +17,8 @@ Things that might be nice, but are not required:
 
 
 
+
+
 Functions that use static data and may still need locking:
 
 
@@ -26,9 +26,9 @@ Functions that use static data and may still need locking:
 
         libc/inet/rpc/rpc_thread.c:
 
-       __rpc_thread_variables is currently disabled, since thread
-       local storage seems to not be correctly specified as 
-       weak functions.
+        __rpc_thread_variables is currently disabled, since thread
+        local storage seems to not be correctly specified as 
+        weak functions.
 
         --------------------------------------------------------------------
 
@@ -37,7 +37,7 @@ Functions that use static data and may still need locking:
         static char buf[PWD_BUFFER_SIZE];
 
         getpass                 <fix required>                          <---
-        
+
         NOTE: This function returns a pointer to a static data structure.
         This seems like it requires an _r version of this function.  Glibc
         does the same thing.  Oops!  So much for thread-safe glibc!