blob: f8aadce34fb44833f6e36e59a36c7a10a59fa61b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _SIGDEBUG_H_
#define _SIGDEBUG_H_
#ifdef DEBUG
extern int sigdebug;
extern int sigpid;
#define SDB_FOLLOW 0x01
#define SDB_KSTACK 0x02
#endif
#endif /* _SIGDEBUG_H_ */
|