]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/ddb/db_print.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
28 * Revision 1.1.1.1 1998/09/22 21:05:48 wsanchez
29 * Import of Mac OS X kernel (~semeria)
31 * Revision 1.1.1.1 1998/03/07 02:26:09 wsanchez
32 * Import of OSF Mach kernel (~mburg)
34 * Revision 1.1.31.1 1997/03/27 18:46:44 barbou
35 * ri-osc CR1566: Add db_show_one_thread() prototype. [dwm]
36 * [1995/08/28 15:47:07 bolinger]
39 * Revision 1.1.16.6 1995/02/23 21:43:39 alanl
40 * Merge with DIPC2_SHARED.
41 * [1995/01/05 13:30:16 alanl]
43 * Revision 1.1.21.2 1994/12/09 22:11:02 dwm
44 * mk6 CR801 - merge up from nmk18b4 to nmk18b7
45 * * Rev 1.1.16.4 1994/10/11 16:36:02 emcmanus
46 * Added db_show_shuttle() and db_show_runq() prototypes.
47 * [1994/12/09 20:36:53 dwm]
49 * Revision 1.1.21.1 1994/11/10 06:06:47 dwm
50 * mk6 CR764 - s/spinlock/simple_lock/ (name change only)
51 * [1994/11/10 05:24:14 dwm]
53 * Revision 1.1.16.3 1994/09/23 01:21:01 ezf
54 * change marker to not FREE
55 * [1994/09/22 21:10:46 ezf]
57 * Revision 1.1.16.2 1994/09/16 15:30:07 emcmanus
58 * Add prototype for db_show_subsystem.
59 * [1994/09/16 15:29:05 emcmanus]
61 * Revision 1.1.16.1 1994/06/11 21:12:10 bolinger
62 * Merge up to NMK17.2.
63 * [1994/06/11 20:04:06 bolinger]
65 * Revision 1.1.18.2 1994/12/06 19:43:09 alanl
66 * Intel merge, Oct 94 code drop.
67 * Added prototypes for db_show_{one,all}_task_vm
70 * Revision 1.1.18.1 1994/08/05 19:35:57 mmp
71 * Remove duplicate prototype for db_show_port_id.
72 * [1994/08/05 19:31:44 mmp]
74 * Revision 1.1.10.3 1994/04/15 18:41:54 paire
75 * Changed db_task_from_space prototype.
78 * Revision 1.1.10.2 1994/03/07 16:37:54 paire
79 * Added ANSI prototype for db_port_kmsg_count routine.
82 * Revision 1.1.10.1 1994/02/08 10:58:27 bernadat
83 * Added db_show_one_space
89 * Revision 1.1.2.3 1993/09/17 21:34:40 robert
90 * change marker to OSF_FREE_COPYRIGHT
91 * [1993/09/17 21:27:24 robert]
93 * Revision 1.1.2.2 1993/07/27 18:28:01 elliston
94 * Add ANSI prototypes. CR #9523.
95 * [1993/07/27 18:12:43 elliston]
100 #ifndef _DDB_DB_PRINT_H_
101 #define _DDB_DB_PRINT_H_
103 #include <mach/boolean.h>
104 #include <machine/db_machdep.h>
106 /* Prototypes for functions exported by this module.
114 void db_show_all_acts(
120 void db_show_one_act(
126 void db_show_one_thread(
132 void db_show_one_task(
138 void db_show_shuttle(
144 void db_show_port_id(
150 void db_show_one_task_vm(
156 void db_show_all_task_vm(
162 void db_show_one_space(
168 void db_show_all_spaces(
176 int db_port_kmsg_count(
179 db_addr_t
db_task_from_space(
183 void db_show_one_simple_lock(
189 void db_show_one_mutex(
195 void db_show_subsystem(
207 #endif /* !_DDB_DB_PRINT_H_ */