add patch from ldso-future branch
[uclibc-ng.git] / docs / threads.txt
blob182f1be7e26b238ac515510ca9023d981797e9f9
1 uClibc thread-safety analysis
3 Things that are still known to be needed for thread safety:
5         none
10 Things that might be nice, but are not required:
12         getnetent_r             <desired, but not required for SuSv3>
13         gethostent_r            <desired, but not required for SuSv3>
14         getprotoent_r           <desired, but not required for SuSv3>
15         getnetbyname_r          <desired, but not required for SuSv3>
16         getnetbyaddr_r          <desired, but not required for SuSv3>
22 Functions that use static data and may still need locking:
25         --------------------------------------------------------------------
27         libc/inet/rpc/rpc_thread.c:
29         __rpc_thread_variables is currently disabled, since thread
30         local storage seems to not be correctly specified as 
31         weak functions.
33         --------------------------------------------------------------------
35         unistd/getpass.c:
37         static char buf[PWD_BUFFER_SIZE];
39         getpass                 <fix required>                          <---
41         NOTE: This function returns a pointer to a static data structure.
42         This seems like it requires an _r version of this function.  Glibc
43         does the same thing.  Oops!  So much for thread-safe glibc!
45         --------------------------------------------------------------------
47         unistd/sysconf.c:
49         static long int ret_vals[_UCLIBC_SYSCONF_NUM_VALID_ARGS];
51         find_or_add_in_table    <fix required?>                         <---
52         main                    <fix required?>                         <---
54         NOTE: I'm not sure if this needs to be made reentrant...
56         --------------------------------------------------------------------