diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-10-24 11:44:52 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-10-24 11:44:52 +0200 |
commit | 714413a7694ff534855e9e5904899695eac6c9bb (patch) | |
tree | b80a3bdd220b5f6978009ac1459272e1c9b8aa45 /pthread/pt-create.c | |
parent | 959f7365fccd1c89be9938c2655eba9122171e6a (diff) |
Really use user-provided stack
* pthread/pt-create.c (__pthread_create_internal): When the user provides a
`stackaddr`, use it instead of allocating a stack.
* pthread/pt-detach.c (pthread_detach): Only deallocate the stack when it
was allocated by libpthread.
* pthread/pt-join.c (pthread_join): Likewise.
Diffstat (limited to 'pthread/pt-create.c')
-rw-r--r-- | pthread/pt-create.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/pthread/pt-create.c b/pthread/pt-create.c index 723aa81..fd6800f 100644 --- a/pthread/pt-create.c +++ b/pthread/pt-create.c @@ -129,13 +129,19 @@ __pthread_create_internal (struct __pthread **thread, } else { - err = __pthread_stack_alloc (&pthread->stackaddr, - setup->stacksize); - if (err) - goto failed_stack_alloc; - pthread->stacksize = setup->stacksize; - pthread->stack = 1; + + if (setup->stackaddr) + pthread->stackaddr = setup->stackaddr; + else + { + err = __pthread_stack_alloc (&pthread->stackaddr, + setup->stacksize); + if (err) + goto failed_stack_alloc; + + pthread->stack = 1; + } } /* Allocate the kernel thread and other required resources. */ |