Changeset 2107


Ignore:
Timestamp:
Jun 29, 2005, 2:48:01 AM (20 years ago)
Author:
bird
Message:

Added _NSIG and making NSIG and _NSIG equal to SIGRTMAX + 1.

Location:
trunk/src/emx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/ChangeLog.LIBC

    • Property cvs2svn:cvs-rev changed from 1.70 to 1.71
    r2106 r2107  
    66        o Changed versions to v0.6 rc1.
    77        o Created the libc06b5 forwarder dll.
     8    - libc:
     9        o Added _NSIG and making NSIG and _NSIG equal to SIGRTMAX + 1.
    810
    9112005-06-27: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • trunk/src/emx/include/sys/signal.h

    • Property cvs2svn:cvs-rev changed from 1.10 to 1.11
    r2106 r2107  
    113113#endif
    114114#define SIGBREAK 32     /** OS/2: Break (Ctrl-Break). (EMX: 21) */
    115 #if __BSD_VISIBLE
    116 #define NSIG     33     /** Number of old style signals (counting zero). */
    117 #endif
    118115
    119116#define SIGRTMIN 33     /** First real time signal. */
    120117#define SIGRTMAX 63     /** Last real time signal (inclusive) */
     118#if __BSD_VISIBLE || __USE_MISC
     119#define _NSIG    (SIGRTMAX + 1)     /** Number of signals (exclusive). Valid range is 1 to (_NSIG-1). */
     120#define NSIG     _NSIG              /** See _NSIG. */
     121#define MAXSIG   SIGRTMAX           /** Max signal number, includsive. (Sun) */
     122#endif
    121123/** @} */
    122124
Note: See TracChangeset for help on using the changeset viewer.