Chromium Code Reviews

Unified Diff: fusl/src/thread/pthread_attr_setstack.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « fusl/src/thread/pthread_attr_setscope.c ('k') | fusl/src/thread/pthread_attr_setstacksize.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/thread/pthread_attr_setstack.c
diff --git a/fusl/src/thread/pthread_attr_setstack.c b/fusl/src/thread/pthread_attr_setstack.c
new file mode 100644
index 0000000000000000000000000000000000000000..61707a318993339fa48f338de39c5a4ace0549a2
--- /dev/null
+++ b/fusl/src/thread/pthread_attr_setstack.c
@@ -0,0 +1,9 @@
+#include "pthread_impl.h"
+
+int pthread_attr_setstack(pthread_attr_t *a, void *addr, size_t size)
+{
+ if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL;
+ a->_a_stackaddr = (size_t)addr + size;
+ a->_a_stacksize = size - DEFAULT_STACK_SIZE;
+ return 0;
+}
« no previous file with comments | « fusl/src/thread/pthread_attr_setscope.c ('k') | fusl/src/thread/pthread_attr_setstacksize.c » ('j') | no next file with comments »

Powered by Google App Engine