12 lines
164 B
C
12 lines
164 B
C
#ifndef _SIGDEBUG_H_
|
|
#define _SIGDEBUG_H_
|
|
|
|
#ifdef DEBUG
|
|
int sigdebug;
|
|
int sigpid;
|
|
#define SDB_FOLLOW 0x01
|
|
#define SDB_KSTACK 0x02
|
|
#endif
|
|
|
|
#endif /* _SIGDEBUG_H_ */
|