From: Jeff Law Date: Wed, 14 Dec 2011 21:14:56 +0000 (-0800) Subject: BZ #5245: pthread_create returns EAGAIN for stack allocation failure, not ENOMEM. X-Git-Tag: glibc-2.15~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e988dba98d852d08707d00eec0072548fdf2eb24;p=thirdparty%2Fglibc.git BZ #5245: pthread_create returns EAGAIN for stack allocation failure, not ENOMEM. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 448aa9357fe..bdf61296e22 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2011-12-14 Jeff Law + + [BZ #5245] + * pthread_create.c (__pthread_create_2_1): Translate ENOMEM to EAGAIN. + 2011-11-28 Andreas Schwab * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Handle diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index f1113fb9b40..6250d03ff6b 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -457,8 +457,9 @@ __pthread_create_2_1 (newthread, attr, start_routine, arg) int err = ALLOCATE_STACK (iattr, &pd); if (__builtin_expect (err != 0, 0)) /* Something went wrong. Maybe a parameter of the attributes is - invalid or we could not allocate memory. */ - return err; + invalid or we could not allocate memory. Note we have to + translate error codes. */ + return err == ENOMEM ? EAGAIN : err; /* Initialize the TCB. All initializations with zero should be