summaryrefslogtreecommitdiffstats
path: root/graphics-libs/mesa/patches-stable/musl-stacksize.patch
blob: db76699a24fa514a89a4f2a1c545edfc998bc479 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Origin: Void Linux

diff --git ./include/c11/threads_posix.h ./include/c11/threads_posix.h
index 45cb6075e6..1a2ea1a450 100644
--- a/include/c11/threads_posix.h
+++ b/include/c11/threads_posix.h
@@ -281,15 +281,29 @@ static inline int
 thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
 {
     struct impl_thrd_param *pack;
+#ifdef __GLIBC__
+    pthread_attr_t *attrp = NULL;
+#else
+    pthread_attr_t attr = { 0 };
+    pthread_attr_init(&attr);
+    pthread_attr_setstacksize(&attr, 8388608);
+    pthread_attr_t *attrp = &attr;
+#endif
     assert(thr != NULL);
     pack = (struct impl_thrd_param *)malloc(sizeof(struct impl_thrd_param));
     if (!pack) return thrd_nomem;
     pack->func = func;
     pack->arg = arg;
-    if (pthread_create(thr, NULL, impl_thrd_routine, pack) != 0) {
+    if (pthread_create(thr, attrp, impl_thrd_routine, pack) != 0) {
+#ifndef __GLIBC__
+        pthread_attr_destroy(&attr);
+#endif
         free(pack);
         return thrd_error;
     }
+#ifndef __GLIBC__
+    pthread_attr_destroy(&attr);
+#endif
     return thrd_success;
 }