[Glibc-bsd-commits] r1666 - trunk/glibc-2.3-head

Petr Salinger ps-guest at costa.debian.org
Wed Oct 4 09:03:13 UTC 2006


Author: ps-guest
Date: 2006-10-04 09:03:12 +0000 (Wed, 04 Oct 2006)
New Revision: 1666

Modified:
   trunk/glibc-2.3-head/NOTES-2.4
   trunk/glibc-2.3-head/glibc25-gai_misc.h
Log:
* update glibc25-gai_misc.h



Modified: trunk/glibc-2.3-head/NOTES-2.4
===================================================================
--- trunk/glibc-2.3-head/NOTES-2.4	2006-10-04 07:27:03 UTC (rev 1665)
+++ trunk/glibc-2.3-head/NOTES-2.4	2006-10-04 09:03:12 UTC (rev 1666)
@@ -80,7 +80,8 @@
 
 * add another _not_cancel() functions - by glibc25-nocancel-sysdeps.diff
 
-* add/fix file linuxthreads/sysdeps/pthread/gai_misc.h - by glibc25-gai_misc.h
+* for pre-2.5 snapshots add/fix file linuxthreads/sysdeps/pthread/gai_misc.h - by glibc25-gai_misc.h
+   (in upstream CVS as of 2006-10-02 and also in glibc-linuxthreads-2.5)
 
 ../src/configure --enable-add-ons=linuxthreads --with-tls --with-__thread i486-kfreebsd --prefix=...
 

Modified: trunk/glibc-2.3-head/glibc25-gai_misc.h
===================================================================
--- trunk/glibc-2.3-head/glibc25-gai_misc.h	2006-10-04 07:27:03 UTC (rev 1665)
+++ trunk/glibc-2.3-head/glibc25-gai_misc.h	2006-10-04 09:03:12 UTC (rev 1666)
@@ -34,7 +34,7 @@
 {
   sigset_t ss;
   sigemptyset (&ss);
-  __sigprocmask(SIG_SETMASK, &ss, NULL);
+  sigprocmask (SIG_SETMASK, &ss, NULL);
 }
 
 extern inline int
@@ -55,12 +55,12 @@
   sigset_t ss;
   sigset_t oss;
   sigfillset (&ss);
-  __sigprocmask(SIG_SETMASK, &ss, &oss);
+  sigprocmask (SIG_SETMASK, &ss, &oss);
 
   int ret = pthread_create (threadp, &attr, tf, arg);
 
   /* Restore the signal mask.  */
-  __sigprocmask(SIG_SETMASK, &oss, NULL);
+  sigprocmask (SIG_SETMASK, &oss, NULL);
 
   (void) pthread_attr_destroy (&attr);
   return ret;




More information about the Glibc-bsd-commits mailing list