summaryrefslogtreecommitdiff
path: root/src/runtime/cgo/gcc_linux_s390x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/cgo/gcc_linux_s390x.c')
-rw-r--r--src/runtime/cgo/gcc_linux_s390x.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime/cgo/gcc_linux_s390x.c b/src/runtime/cgo/gcc_linux_s390x.c
index 81e3b339b0..cdc9c23f49 100644
--- a/src/runtime/cgo/gcc_linux_s390x.c
+++ b/src/runtime/cgo/gcc_linux_s390x.c
@@ -6,6 +6,7 @@
#include <string.h>
#include <signal.h>
#include "libcgo.h"
+#include "libcgo_unix.h"
static void *threadentry(void*);
@@ -41,7 +42,7 @@ _cgo_sys_thread_start(ThreadStart *ts)
pthread_attr_getstacksize(&attr, &size);
// Leave stacklo=0 and set stackhi=size; mstack will do the rest.
ts->g->stackhi = size;
- err = pthread_create(&p, &attr, threadentry, ts);
+ err = _cgo_try_pthread_create(&p, &attr, threadentry, ts);
pthread_sigmask(SIG_SETMASK, &oset, nil);