svn commit: trunk/uClibc/libc/signal

sjhill at uclibc.org sjhill at uclibc.org
Sat Dec 10 17:35:35 UTC 2005


Author: sjhill
Date: 2005-12-10 09:35:34 -0800 (Sat, 10 Dec 2005)
New Revision: 12815

Log:
The minimum is different for NPTL because of two new signals.


Modified:
   trunk/uClibc/libc/signal/allocrtsig.c


Changeset:
Modified: trunk/uClibc/libc/signal/allocrtsig.c
===================================================================
--- trunk/uClibc/libc/signal/allocrtsig.c	2005-12-10 17:27:13 UTC (rev 12814)
+++ trunk/uClibc/libc/signal/allocrtsig.c	2005-12-10 17:35:34 UTC (rev 12815)
@@ -32,7 +32,11 @@
 static int current_rtmin = -1;
 static int current_rtmax = -1;
 #else
+# ifdef __UCLIBC_HAS_THREADS_NATIVE__
+static int current_rtmin = __SIGRTMIN + 2;
+# else
 static int current_rtmin = __SIGRTMIN;
+# endif
 static int current_rtmax = __SIGRTMAX;
 #endif
 




More information about the uClibc-cvs mailing list