summaryrefslogtreecommitdiff
path: root/coro.c
diff options
context:
space:
mode:
Diffstat (limited to 'coro.c')
-rw-r--r--coro.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/coro.c b/coro.c
index cbc5eeb..a9137f3 100644
--- a/coro.c
+++ b/coro.c
@@ -404,7 +404,11 @@ coro_create (coro_context *ctx, coro_func coro, void *arg, void *sptr, long ssiz
args.main = &nctx;
pthread_attr_init (&attr);
+#if __UCLIBC__
+ pthread_attr_setstacksize (&attr, (size_t)ssize);
+#else
pthread_attr_setstack (&attr, sptr, (size_t)ssize);
+#endif
pthread_attr_setscope (&attr, PTHREAD_SCOPE_PROCESS);
pthread_create (&ctx->id, &attr, coro_init, &args);