]>
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 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
31 * Revision 1.1.1.1 1998/09/22 21:05:48 wsanchez
32 * Import of Mac OS X kernel (~semeria)
34 * Revision 1.1.1.1 1998/03/07 02:26:09 wsanchez
35 * Import of OSF Mach kernel (~mburg)
37 * Revision 1.1.31.1 1997/03/27 18:46:44 barbou
38 * ri-osc CR1566: Add db_show_one_thread() prototype. [dwm]
39 * [1995/08/28 15:47:07 bolinger]
42 * Revision 1.1.16.6 1995/02/23 21:43:39 alanl
43 * Merge with DIPC2_SHARED.
44 * [1995/01/05 13:30:16 alanl]
46 * Revision 1.1.21.2 1994/12/09 22:11:02 dwm
47 * mk6 CR801 - merge up from nmk18b4 to nmk18b7
48 * * Rev 1.1.16.4 1994/10/11 16:36:02 emcmanus
49 * Added db_show_shuttle() and db_show_runq() prototypes.
50 * [1994/12/09 20:36:53 dwm]
52 * Revision 1.1.21.1 1994/11/10 06:06:47 dwm
53 * mk6 CR764 - s/spinlock/simple_lock/ (name change only)
54 * [1994/11/10 05:24:14 dwm]
56 * Revision 1.1.16.3 1994/09/23 01:21:01 ezf
57 * change marker to not FREE
58 * [1994/09/22 21:10:46 ezf]
60 * Revision 1.1.16.2 1994/09/16 15:30:07 emcmanus
61 * Add prototype for db_show_subsystem.
62 * [1994/09/16 15:29:05 emcmanus]
64 * Revision 1.1.16.1 1994/06/11 21:12:10 bolinger
65 * Merge up to NMK17.2.
66 * [1994/06/11 20:04:06 bolinger]
68 * Revision 1.1.18.2 1994/12/06 19:43:09 alanl
69 * Intel merge, Oct 94 code drop.
70 * Added prototypes for db_show_{one,all}_task_vm
73 * Revision 1.1.18.1 1994/08/05 19:35:57 mmp
74 * Remove duplicate prototype for db_show_port_id.
75 * [1994/08/05 19:31:44 mmp]
77 * Revision 1.1.10.3 1994/04/15 18:41:54 paire
78 * Changed db_task_from_space prototype.
81 * Revision 1.1.10.2 1994/03/07 16:37:54 paire
82 * Added ANSI prototype for db_port_kmsg_count routine.
85 * Revision 1.1.10.1 1994/02/08 10:58:27 bernadat
86 * Added db_show_one_space
92 * Revision 1.1.2.3 1993/09/17 21:34:40 robert
93 * change marker to OSF_FREE_COPYRIGHT
94 * [1993/09/17 21:27:24 robert]
96 * Revision 1.1.2.2 1993/07/27 18:28:01 elliston
97 * Add ANSI prototypes. CR #9523.
98 * [1993/07/27 18:12:43 elliston]
103 #ifndef _DDB_DB_PRINT_H_
104 #define _DDB_DB_PRINT_H_
106 #include <mach/boolean.h>
107 #include <machine/db_machdep.h>
109 /* Prototypes for functions exported by this module.
117 void db_show_all_acts(
123 void db_show_one_act(
129 void db_show_one_thread(
135 void db_show_one_task(
141 void db_show_shuttle(
147 void db_show_port_id(
153 void db_show_one_task_vm(
159 void db_show_all_task_vm(
165 void db_show_one_space(
171 void db_show_all_spaces(
179 int db_port_kmsg_count(
182 db_addr_t
db_task_from_space(
186 void db_show_one_simple_lock(
192 void db_show_one_mutex(
204 #endif /* !_DDB_DB_PRINT_H_ */