1 | //
|
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
---|
3 | //
|
---|
4 | // The contents of this file are covered under the licence agreement in the
|
---|
5 | // file "LICENCE" distributed with Cforall.
|
---|
6 | //
|
---|
7 | // setjmp.h --
|
---|
8 | //
|
---|
9 | // Author : Peter A. Buhr
|
---|
10 | // Created On : Mon Jul 4 23:25:26 2016
|
---|
11 | // Last Modified By : Peter A. Buhr
|
---|
12 | // Last Modified On : Thu Feb 3 21:53:28 2022
|
---|
13 | // Update Count : 18
|
---|
14 | //
|
---|
15 |
|
---|
16 | // pthread.h and setjmp.h cannot agree on the type of __sigsetjmp:
|
---|
17 | //
|
---|
18 | // extern int __sigsetjmp (struct __jmp_buf_tag *__env, int __savemask) __attribute__ ((__nothrow__));
|
---|
19 | // extern int __sigsetjmp (struct __jmp_buf_tag __env[1], int __savemask) __attribute__ ((__nothrow__));
|
---|
20 | //
|
---|
21 | // With -Wall, gcc-11 warns about the disagreement unless the CPP directive
|
---|
22 | //
|
---|
23 | // # 1 "/usr/include/pthread.h" 1 3 4
|
---|
24 | //
|
---|
25 | // appears, which appears to be witchcraft. Unfortunately, this directive is removed by the CFA preprocessor, so the
|
---|
26 | // batchtest fails because of the spurious warning message. Hence, the warning is elided.
|
---|
27 |
|
---|
28 | extern "C" {
|
---|
29 | #if defined(__GNUC__) && __GNUC__ == 11
|
---|
30 | #pragma GCC diagnostic push
|
---|
31 | #pragma GCC diagnostic ignored "-Warray-parameter"
|
---|
32 | #endif // defined(__GNUC__) && __GNUC__ == 11
|
---|
33 |
|
---|
34 | #include_next <setjmp.h> // has internal check for multiple expansion
|
---|
35 |
|
---|
36 | #if defined(__GNUC__) && __GNUC__ == 11
|
---|
37 | #pragma GCC diagnostic pop
|
---|
38 | #endif // defined(__GNUC__) && __GNUC__ == 11
|
---|
39 | } // extern "C"
|
---|
40 |
|
---|
41 | // Local Variables: //
|
---|
42 | // mode: c++ //
|
---|
43 | // End: //
|
---|