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