155646Sbostic /*- 2*63359Sbostic * Copyright (c) 1992, 1993 3*63359Sbostic * The Regents of the University of California. All rights reserved. 455646Sbostic * 555646Sbostic * This code is derived from software contributed to Berkeley by 655646Sbostic * William Jolitz. 755646Sbostic * 855646Sbostic * %sccs.include.redist.c% 955646Sbostic * 10*63359Sbostic * @(#)dbg.h 8.1 (Berkeley) 06/11/93 1155646Sbostic */ 1255646Sbostic 1355646Sbostic /* 1455646Sbostic * Screen debug flags 1555646Sbostic */ 1655646Sbostic #define DPAUSE 0x0001 /* wait for key press */ 1755646Sbostic #define DALLTRAPS 0x0002 /* print on alltraps */ 1855646Sbostic #define DALLSYSC 0x0004 /* print on allsystem calls */ 1955646Sbostic #define DSYSFAIL 0x0008 /* print on system call failures */ 2055646Sbostic #define DPAGIN 0x0010 /* print on pagin activity */ 2155646Sbostic #define DEXEC 0x0020 /* print on exec activity */ 2255646Sbostic #define DNAMEI 0x0040 /* print on namei activity */ 2355646Sbostic #define DEXPAND 0x0080 /* print on segment expand activity */ 2455646Sbostic #define DCLK 0x0100 /* print on clock activity */ 2555646Sbostic #define DDSK 0x0200 /* print on disk activity */ 2655646Sbostic #define DSIGNAL 0x0400 /* print on signal delivery */ 27