diff options
Diffstat (limited to 'src/pkg/runtime/cgo/gcc_linux_386.c')
| -rw-r--r-- | src/pkg/runtime/cgo/gcc_linux_386.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/pkg/runtime/cgo/gcc_linux_386.c b/src/pkg/runtime/cgo/gcc_linux_386.c index c25c7b70f..0a46c9b7a 100644 --- a/src/pkg/runtime/cgo/gcc_linux_386.c +++ b/src/pkg/runtime/cgo/gcc_linux_386.c @@ -34,7 +34,7 @@ _cgo_sys_thread_start(ThreadStart *ts)  	int err;  	sigfillset(&ign); -	sigprocmask(SIG_SETMASK, &ign, &oset); +	pthread_sigmask(SIG_SETMASK, &ign, &oset);  	// Not sure why the memset is necessary here,  	// but without it, we get a bogus stack size @@ -46,7 +46,7 @@ _cgo_sys_thread_start(ThreadStart *ts)  	ts->g->stackguard = size;  	err = 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)); | 
