blob: e13e156fdf663e19e9a8a74a53d9a7b7ddcbc36a [file] [log] [blame]
Stephen Hines6a211c52014-07-21 00:49:56 -07001// RUN: %clang_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -08002// This test fails on powerpc64 BE (VMA=44), it does not appear to be
3// a functional problem, but the Tsan report is missing some info.
4// XFAIL: powerpc64-unknown-linux-gnu
5
Stephen Hines86277eb2015-03-23 12:06:32 -07006#include "test.h"
Stephen Hines2d1fdb22014-05-28 23:58:16 -07007#include <signal.h>
8#include <sys/types.h>
Stephen Hines2d1fdb22014-05-28 23:58:16 -07009#include <errno.h>
10
11pthread_t mainth;
12volatile int done;
13
14static void MyHandler(int, siginfo_t *s, void *c) {
15 errno = 1;
16 done = 1;
17}
18
19static void* sendsignal(void *p) {
Stephen Hines86277eb2015-03-23 12:06:32 -070020 barrier_wait(&barrier);
Stephen Hines2d1fdb22014-05-28 23:58:16 -070021 pthread_kill(mainth, SIGPROF);
22 return 0;
23}
24
25static __attribute__((noinline)) void loop() {
Stephen Hines86277eb2015-03-23 12:06:32 -070026 barrier_wait(&barrier);
Stephen Hines2d1fdb22014-05-28 23:58:16 -070027 while (done == 0) {
28 volatile char *p = (char*)malloc(1);
29 p[0] = 0;
30 free((void*)p);
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080031 sched_yield();
Stephen Hines2d1fdb22014-05-28 23:58:16 -070032 }
33}
34
35int main() {
Stephen Hines86277eb2015-03-23 12:06:32 -070036 barrier_init(&barrier, 2);
Stephen Hines2d1fdb22014-05-28 23:58:16 -070037 mainth = pthread_self();
38 struct sigaction act = {};
39 act.sa_sigaction = &MyHandler;
40 sigaction(SIGPROF, &act, 0);
41 pthread_t th;
42 pthread_create(&th, 0, sendsignal, 0);
43 loop();
44 pthread_join(th, 0);
45 return 0;
46}
47
48// CHECK: WARNING: ThreadSanitizer: signal handler spoils errno
Stephen Hines6d186232014-11-26 17:56:19 -080049// CHECK: #0 MyHandler(int, {{(__)?}}siginfo{{(_t)?}}*, void*) {{.*}}signal_errno.cc
Stephen Hines2d1fdb22014-05-28 23:58:16 -070050// CHECK: main
51// CHECK: SUMMARY: ThreadSanitizer: signal handler spoils errno{{.*}}MyHandler
52