summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-01-18 02:30:03 +0000
committerMike Frysinger <vapier@gentoo.org>2005-01-18 02:30:03 +0000
commitb8fd81f82e00991105bd967f095466549a8bedf6 (patch)
tree9115ae7382b5d5a56f61e39d75f3c6d192efc2ca /docs
parent0695d2cabcfeb84bb62105f6fcf58bdda5454e39 (diff)
whitespace touchups
Diffstat (limited to 'docs')
-rw-r--r--docs/threads.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/threads.txt b/docs/threads.txt
index 297be320c..182f1be7e 100644
--- a/docs/threads.txt
+++ b/docs/threads.txt
@@ -17,6 +17,8 @@ Things that might be nice, but are not required:
+
+
Functions that use static data and may still need locking:
@@ -24,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.
--------------------------------------------------------------------
@@ -35,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!