1.0.13.45: close the fd before deleting / moving files on CLOSE :ABORT T
[sbcl/simd.git] / tools-for-build / where-is-mcontext.c
blob6c579b1dc1eed33867b5fbf3971f8ea1efeac2b1
1 /*
2 * Find the offset of uc_mcontext in a ucontext structure, to enable
3 * building on both (glibc-2.3.1 and earlier) and (glibc-2.3.2 and
4 * later), after the glibc developers broke source code compatibility.
5 * (see also Debian bugs #207806 and #209074)
6 */
8 /*
9 * This software is part of the SBCL system. See the README file for
10 * more information.
12 * While most of SBCL is derived from the CMU CL system, many
13 * utilities for the build process (like this one) were written from
14 * scratch after the fork from CMU CL.
16 * This software is in the public domain and is provided with
17 * absolutely no warranty. See the COPYING and CREDITS files for
18 * more information.
21 #include <stdio.h>
22 #include <stddef.h>
23 #include <stdlib.h>
24 #include <sys/ucontext.h>
26 int main (int argc, char *argv[]) {
28 if(argc != 1) {
29 fprintf(stderr,"%s: command line arguments provided. Don't do that.\n", argv[0]);
30 exit(1);
33 printf("\
34 /* This is an automatically-generated file; please do not edit it.\n\
35 See the program tools-for-build/where-is-mcontext.c.\n\
36 */\n\n");
38 printf("\
39 #ifndef PPC_LINUX_MCONTEXT_H\n\
40 #define PPC_LINUX_MCONTEXT_H\n\n");
42 if (offsetof(ucontext_t,uc_mcontext) > 40) {
43 printf("#define GLIBC232_STYLE_UCONTEXT\n\n");
44 } else {
45 printf("#define GLIBC231_STYLE_UCONTEXT\n\n");
47 printf("\
48 #endif /* PPC_LINUX_MCONTEXT_H */\n");
49 exit(0);