Changeset 1617 for trunk/src/emx/include/sys/signal.h
- Timestamp:
- Nov 7, 2004, 10:33:03 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/sys/signal.h
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r1616 r1617 52 52 #endif 53 53 #define SIGILL 4 /** ANSI: Illegal instruction */ 54 #if __XSI_VISIBLE 54 #if __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 55 55 #define SIGTRAP 5 /** POSIX: Single step (debugging) */ 56 56 #endif … … 68 68 #endif 69 69 #define SIGSEGV 11 /** ANSI: Segmentation fault */ 70 #if __BSD_VISIBLE 70 #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 71 71 #define SIGSYS 12 /** Invalid argument to system call */ 72 72 #endif … … 92 92 #endif 93 93 #if __XSI_VISIBLE 94 #define SIGPOLL 23 /** ??: Input/output possible signal. (Same as SIGIO.) */ 95 #endif 96 #if __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 94 97 #define SIGXCPU 24 /** BSD 4.2: Exceeded CPU time limit. */ 95 98 #define SIGXFSZ 25 /** BSD 4.2: Exceeded file size limit. */ 99 #endif 100 #if __XSI_VISIBLE 96 101 #define SIGVTALRM 26 /** BSD 4.2: Virtual time alarm. */ 102 #endif 103 #if __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 97 104 #define SIGPROF 27 /** BSD 4.2: Profiling time alarm. */ 98 105 #endif … … 188 195 * @{ 189 196 */ 190 /** Deliver signal on alternate stack. */197 /** Current on alternative stack. */ 191 198 #define SS_ONSTACK 0x00000001 192 199 /** Do not take signal on alternate stack. */ … … 422 429 /** If set the signal was queue. */ 423 430 #define __LIBC_SI_QUEUED 0x00000001 431 /** Internal signal generated by LIBC. */ 432 #define __LIBC_SI_INTERNAL 0x00000002 424 433 /** @} */ 425 434 #endif … … 452 461 }; 453 462 #define sa_handler __sigaction_u.__sa_handler 463 #define sa_sigaction __sigaction_u.__sa_sigaction 454 464 #endif 455 465 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.