sigstack.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* sigstack, sigaltstack definitions.
  2. Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <http://www.gnu.org/licenses/>. */
  14. #ifndef _SIGNAL_H
  15. # error "Never include this file directly. Use <signal.h> instead"
  16. #endif
  17. #if defined __UCLIBC_SUSV4_LEGACY__ || !defined __STRICT_HEADERS__
  18. /* Structure describing a signal stack (obsolete). */
  19. struct sigstack
  20. {
  21. void *ss_sp; /* Signal stack pointer. */
  22. int ss_onstack; /* Nonzero if executing on this stack. */
  23. };
  24. #endif
  25. /* Possible values for `ss_flags.'. */
  26. enum
  27. {
  28. SS_ONSTACK = 1,
  29. #define SS_ONSTACK SS_ONSTACK
  30. SS_DISABLE
  31. #define SS_DISABLE SS_DISABLE
  32. };
  33. /* Minimum stack size for a signal handler. */
  34. #define MINSIGSTKSZ 4096
  35. /* System default stack size. */
  36. #define SIGSTKSZ 16384
  37. /* Alternate, preferred interface. */
  38. typedef struct sigaltstack
  39. {
  40. void *ss_sp;
  41. int ss_flags;
  42. size_t ss_size;
  43. } stack_t;