diff options
Diffstat (limited to 'include/bits')
-rw-r--r-- | include/bits/sigstack.h | 5 | ||||
-rw-r--r-- | include/bits/sigstksz.h | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/bits/sigstack.h b/include/bits/sigstack.h new file mode 100644 index 0000000000..eea939f59d --- /dev/null +++ b/include/bits/sigstack.h @@ -0,0 +1,5 @@ +#include_next <bits/sigstack.h> + +#if !defined _ISOMAC && !defined CONSTANT_MINSIGSTKSZ +# define CONSTANT_MINSIGSTKSZ MINSIGSTKSZ +#endif diff --git a/include/bits/sigstksz.h b/include/bits/sigstksz.h new file mode 100644 index 0000000000..2ca891e918 --- /dev/null +++ b/include/bits/sigstksz.h @@ -0,0 +1,7 @@ +/* NB: Don't define MINSIGSTKSZ nor SIGSTKSZ to sysconf (SC_SIGSTKSZ) for + glibc build. IS_IN can only be used when _ISOMAC isn't defined. */ +#ifdef _ISOMAC +# include_next <bits/sigstksz.h> +#elif IS_IN (libsupport) +# include_next <bits/sigstksz.h> +#endif |