936615752a
Copy all the misc/cgo files from the gc toolchain into libgo/misc. These will be used for testing purposes by later changes to the gotools directory. Reviewed-on: https://go-review.googlesource.com/46721 From-SVN: r249674
39 lines
773 B
C
39 lines
773 B
C
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !windows
|
|
|
|
#include <signal.h>
|
|
#include <stdlib.h>
|
|
#include <pthread.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
extern void IntoGoAndBack();
|
|
|
|
int CheckBlocked() {
|
|
sigset_t mask;
|
|
sigprocmask(SIG_BLOCK, NULL, &mask);
|
|
return sigismember(&mask, SIGIO);
|
|
}
|
|
|
|
static void* sigthreadfunc(void* unused) {
|
|
sigset_t mask;
|
|
sigemptyset(&mask);
|
|
sigaddset(&mask, SIGIO);
|
|
sigprocmask(SIG_BLOCK, &mask, NULL);
|
|
IntoGoAndBack();
|
|
return NULL;
|
|
}
|
|
|
|
int RunSigThread() {
|
|
pthread_t thread;
|
|
int r;
|
|
|
|
r = pthread_create(&thread, NULL, &sigthreadfunc, NULL);
|
|
if (r != 0)
|
|
return r;
|
|
return pthread_join(thread, NULL);
|
|
}
|