diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-07 16:55:31 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-03-07 16:55:31 -0500 |
| commit | 1e634a384ccc0ae57e0343369f7adb0b1b4b9875 (patch) | |
| tree | e7f4d834e39028b141f6c02e16f6eafb20d8320d /libc/include/powerpc-linux-gnu/bits/sigstack.h | |
| parent | 5469e3e3c1ae060ee04f554499c852603eef3a5f (diff) | |
| parent | 2bb6825baa906936ff28b82029a4644ef0f73755 (diff) | |
| download | zig-1e634a384ccc0ae57e0343369f7adb0b1b4b9875.tar.gz zig-1e634a384ccc0ae57e0343369f7adb0b1b4b9875.zip | |
Merge branch 'glibc'
See #514
Diffstat (limited to 'libc/include/powerpc-linux-gnu/bits/sigstack.h')
| -rw-r--r-- | libc/include/powerpc-linux-gnu/bits/sigstack.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libc/include/powerpc-linux-gnu/bits/sigstack.h b/libc/include/powerpc-linux-gnu/bits/sigstack.h new file mode 100644 index 0000000000..f3029e811a --- /dev/null +++ b/libc/include/powerpc-linux-gnu/bits/sigstack.h @@ -0,0 +1,32 @@ +/* sigstack, sigaltstack definitions. + Copyright (C) 1998-2019 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ + +#ifndef _BITS_SIGSTACK_H +#define _BITS_SIGSTACK_H 1 + +#if !defined _SIGNAL_H && !defined _SYS_UCONTEXT_H +# error "Never include this file directly. Use <signal.h> instead" +#endif + +/* Minimum stack size for a signal handler. */ +#define MINSIGSTKSZ 4096 + +/* System default stack size. */ +#define SIGSTKSZ 16384 + +#endif /* bits/sigstack.h */
\ No newline at end of file |
