summaryrefslogtreecommitdiff
path: root/nptl/pthread_create.c
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2011-12-14 13:14:56 -0800
committerRoland McGrath <roland@hack.frob.com>2011-12-14 13:14:56 -0800
commite988dba98d852d08707d00eec0072548fdf2eb24 (patch)
treecfb296bdd96c310f17cafe3d73a09026a081da2e /nptl/pthread_create.c
parent26428b7c692af44c61150677b6798294ccd397a0 (diff)
BZ #5245: pthread_create returns EAGAIN for stack allocation failure, not ENOMEM.
Diffstat (limited to 'nptl/pthread_create.c')
-rw-r--r--nptl/pthread_create.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c
index f1113fb9b4..6250d03ff6 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