db_output.h revision 160312
1248435Smm/*-
2248435Smm * Mach Operating System
3248435Smm * Copyright (c) 1991,1990 Carnegie Mellon University
4248435Smm * All Rights Reserved.
5248435Smm *
6248435Smm * Permission to use, copy, modify and distribute this software and its
7248435Smm * documentation is hereby granted, provided that both the copyright
8248435Smm * notice and this permission notice appear in all copies of the
9248435Smm * software, derivative works or modified versions, and any portions
10248435Smm * thereof, and that both notices appear in supporting documentation.
11248435Smm *
12248435Smm * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13248435Smm * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14248435Smm * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
15248435Smm *
16248435Smm * Carnegie Mellon requests users of this software to return to
17248435Smm *
18248435Smm *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
19248435Smm *  School of Computer Science
20248435Smm *  Carnegie Mellon University
21248435Smm *  Pittsburgh PA 15213-3890
22248435Smm *
23248435Smm * any improvements or extensions that they make and grant Carnegie the
24248435Smm * rights to redistribute these changes.
25248435Smm *
26248435Smm * $FreeBSD: head/sys/ddb/db_output.h 160312 2006-07-12 21:22:44Z jhb $
27248435Smm */
28248435Smm
29248435Smm#ifndef _DDB_DB_OUTPUT_H_
30248435Smm#define	_DDB_DB_OUTPUT_H_
31248435Smm
32248435Smm/*
33248435Smm * 	Author: David B. Golub, Carnegie Mellon University
34248435Smm *	Date:	8/90
35248435Smm */
36248435Smm
37248435Smm/*
38248435Smm * Printing routines for kernel debugger.
39248435Smm */
40248435Smm
41248435Smmvoid	db_disable_pager(void);
42248435Smmvoid	db_enable_pager(void);
43248435Smmvoid	db_end_line(void);
44248435Smmvoid	db_force_whitespace(void);
45248435Smmint	db_print_position(void);
46248435Smm
47248435Smm#endif /* !_DDB_DB_OUTPUT_H_ */
48