Blame SOURCES/glibc-rh767746.patch

b40826
--- a/nptl/pthread_create.c	2011-12-13 11:41:37.000000000 -0700
b40826
+++ b/nptl/pthread_create.c	2011-12-14 10:03:13.000000000 -0700
b40826
@@ -440,8 +440,9 @@
b40826
   int err = ALLOCATE_STACK (iattr, &pd;;
b40826
   if (__builtin_expect (err != 0, 0))
b40826
     /* Something went wrong.  Maybe a parameter of the attributes is
b40826
-       invalid or we could not allocate memory.  */
b40826
-    return err;
b40826
+       invalid or we could not allocate memory.  Note we have to
b40826
+       translate error codes.  */
b40826
+    return err == ENOMEM ? EAGAIN : err;
b40826
 
b40826
 
b40826
   /* Initialize the TCB.  All initializations with zero should be