diff options
Diffstat (limited to 'src/pkg/runtime/cgo/gcc_openbsd_amd64.c')
-rw-r--r-- | src/pkg/runtime/cgo/gcc_openbsd_amd64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/cgo/gcc_openbsd_amd64.c b/src/pkg/runtime/cgo/gcc_openbsd_amd64.c index 5a5a17114..64d29a935 100644 --- a/src/pkg/runtime/cgo/gcc_openbsd_amd64.c +++ b/src/pkg/runtime/cgo/gcc_openbsd_amd64.c @@ -122,7 +122,7 @@ _cgo_sys_thread_start(ThreadStart *ts) int err; sigfillset(&ign); - sigprocmask(SIG_SETMASK, &ign, &oset); + pthread_sigmask(SIG_SETMASK, &ign, &oset); pthread_attr_init(&attr); pthread_attr_getstacksize(&attr, &size); @@ -130,7 +130,7 @@ _cgo_sys_thread_start(ThreadStart *ts) ts->g->stackguard = size; err = sys_pthread_create(&p, &attr, threadentry, ts); - sigprocmask(SIG_SETMASK, &oset, nil); + pthread_sigmask(SIG_SETMASK, &oset, nil); if (err != 0) { fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err)); |