You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef STRACE_NSIG_H |
|
#define STRACE_NSIG_H |
|
|
|
#include <signal.h> |
|
|
|
#ifndef NSIG |
|
# warning NSIG is not defined, using 32 |
|
# define NSIG 32 |
|
#elif NSIG < 32 |
|
# error NSIG < 32 |
|
#endif |
|
|
|
#define NSIG_BYTES (NSIG / 8) |
|
|
|
#endif /* !STRACE_NSIG_H */
|
|
|