xref: /original-bsd/sys/i386/include/dbg.h (revision 079b85dd)
1 /*-
2  * Copyright (c) 1992 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * William Jolitz.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)dbg.h	7.1 (Berkeley) 07/23/92
11  */
12 
13 /*
14  * Screen debug flags
15  */
16 #define	DPAUSE		0x0001	/* wait for key press */
17 #define	DALLTRAPS	0x0002	/* print on alltraps */
18 #define	DALLSYSC	0x0004	/* print on allsystem calls */
19 #define	DSYSFAIL	0x0008	/* print on system call failures */
20 #define	DPAGIN		0x0010	/* print on pagin activity */
21 #define	DEXEC		0x0020	/* print on exec activity */
22 #define	DNAMEI		0x0040	/* print on namei activity */
23 #define	DEXPAND		0x0080	/* print on segment expand activity */
24 #define	DCLK		0x0100	/* print on clock activity */
25 #define	DDSK		0x0200	/* print on disk activity */
26 #define	DSIGNAL		0x0400	/* print on signal delivery */
27