2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2013 The Go Authors. All rights reserved.
|
2013-05-14 22:33:29 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package cgotest
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <signal.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
|
2013-07-11 21:24:35 -06:00
|
|
|
static void *thread1(void *p) {
|
2013-05-14 22:33:29 -06:00
|
|
|
(void)p;
|
|
|
|
pthread_kill(pthread_self(), SIGPROF);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
void test5337() {
|
|
|
|
pthread_t tid;
|
2013-07-11 21:24:35 -06:00
|
|
|
pthread_create(&tid, 0, thread1, NULL);
|
2013-05-14 22:33:29 -06:00
|
|
|
pthread_join(tid, 0);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
// Verify that we can withstand SIGPROF received on foreign threads
|
|
|
|
func test5337(t *testing.T) {
|
|
|
|
C.test5337()
|
|
|
|
}
|