OSDN Git Service

linuxthreads.new: initialize stdio locking
authorTimo Teräs <timo.teras@iki.fi>
Tue, 13 Apr 2010 06:38:59 +0000 (09:38 +0300)
committerAustin Foxley <austinf@cetoncorp.com>
Wed, 14 Apr 2010 17:58:30 +0000 (10:58 -0700)
uClibc requires the threading library to enable locking for
stdio, or the locking is not done at all.

Signed-off-by: Timo Teräs <timo.teras@iki.fi>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
libpthread/linuxthreads/pthread.c

index 6ae9a10..614cad1 100644 (file)
@@ -613,6 +613,17 @@ static void pthread_initialize(void)
 #ifdef USE_TLS
   GL(dl_init_static_tls) = &__pthread_init_static_tls;
 #endif
+
+  /* uClibc-specific stdio initialization for threads. */
+  {
+    FILE *fp;
+    _stdio_user_locking = 0;       /* 2 if threading not initialized */
+    for (fp = _stdio_openlist; fp != NULL; fp = fp->__nextopen) {
+      if (fp->__user_locking != 1) {
+        fp->__user_locking = 0;
+      }
+    }
+  }
 }
 
 void __pthread_initialize(void)