home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet MPEG Audio Archive
/
IMAA.mdf
/
util
/
dos
/
l3v100n
/
rsx
/
source
/
signals.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-01-19
|
608b
|
35 lines
/* Copyright Rainer Schnitker 92,93 */
#ifndef _SIGNALS_H
#define _SIGNALS_H
/* signal no */
#define SIGHUP 1
#define SIGINT 2
#define SIGQUIT 3
#define SIGILL 4
#define SIGTRAP 5
#define SIGABRT 6
#define SIGEMT 7
#define SIGFPE 8
#define SIGKILL 9
#define SIGBUS 10
#define SIGSEGV 11
#define SIGSYS 12
#define SIGPIPE 13
#define SIGALRM 14
#define SIGTERM 15
#define SIGCLD 18
#define SIGBREAK 21
#define MAX_SIGNALS 22
#define SIG_DFL 0
#define SIG_IGN 1
#define SIG_ACK 4
#define SIG_ERR -1
void myexcep13 ( void );
#endif