Ignore:
Timestamp:
Nov 7, 2004, 10:33:03 AM (21 years ago)
Author:
bird
Message:

Debugging signals.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/signal.h

    • Property cvs2svn:cvs-rev changed from 1.7 to 1.8
    r1616 r1617  
    5252#endif
    5353#define SIGILL    4     /** ANSI: Illegal instruction */
    54 #if __XSI_VISIBLE
     54#if __XSI_VISIBLE  || __POSIX_VISIBLE >= 200112
    5555#define SIGTRAP   5     /** POSIX: Single step (debugging) */
    5656#endif
     
    6868#endif
    6969#define SIGSEGV  11     /** ANSI: Segmentation fault */
    70 #if __BSD_VISIBLE
     70#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112
    7171#define SIGSYS   12     /** Invalid argument to system call */
    7272#endif
     
    9292#endif
    9393#if __XSI_VISIBLE
     94#define SIGPOLL  23     /** ??: Input/output possible signal. (Same as SIGIO.) */
     95#endif
     96#if __XSI_VISIBLE || __POSIX_VISIBLE >= 200112
    9497#define SIGXCPU  24     /** BSD 4.2: Exceeded CPU time limit. */
    9598#define SIGXFSZ  25     /** BSD 4.2: Exceeded file size limit. */
     99#endif
     100#if __XSI_VISIBLE
    96101#define SIGVTALRM 26    /** BSD 4.2: Virtual time alarm. */
     102#endif
     103#if __XSI_VISIBLE || __POSIX_VISIBLE >= 200112
    97104#define SIGPROF  27     /** BSD 4.2: Profiling time alarm. */
    98105#endif
     
    188195 * @{
    189196 */
    190 /** Deliver signal on alternate stack. */
     197/** Current on alternative stack. */
    191198#define SS_ONSTACK          0x00000001
    192199/** Do not take signal on alternate stack. */
     
    422429/** If set the signal was queue. */
    423430#define __LIBC_SI_QUEUED        0x00000001
     431/** Internal signal generated by LIBC. */
     432#define __LIBC_SI_INTERNAL      0x00000002
    424433/** @} */
    425434#endif
     
    452461};
    453462#define sa_handler      __sigaction_u.__sa_handler
     463#define sa_sigaction    __sigaction_u.__sa_sigaction
    454464#endif
    455465
Note: See TracChangeset for help on using the changeset viewer.