]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/ddb/db_print.h
f02d6979aa29bad4be069e43bd75dd2c611f18b3
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
34 * Revision 1.1.1.1 1998/09/22 21:05:48 wsanchez
35 * Import of Mac OS X kernel (~semeria)
37 * Revision 1.1.1.1 1998/03/07 02:26:09 wsanchez
38 * Import of OSF Mach kernel (~mburg)
40 * Revision 1.1.31.1 1997/03/27 18:46:44 barbou
41 * ri-osc CR1566: Add db_show_one_thread() prototype. [dwm]
42 * [1995/08/28 15:47:07 bolinger]
45 * Revision 1.1.16.6 1995/02/23 21:43:39 alanl
46 * Merge with DIPC2_SHARED.
47 * [1995/01/05 13:30:16 alanl]
49 * Revision 1.1.21.2 1994/12/09 22:11:02 dwm
50 * mk6 CR801 - merge up from nmk18b4 to nmk18b7
51 * * Rev 1.1.16.4 1994/10/11 16:36:02 emcmanus
52 * Added db_show_shuttle() and db_show_runq() prototypes.
53 * [1994/12/09 20:36:53 dwm]
55 * Revision 1.1.21.1 1994/11/10 06:06:47 dwm
56 * mk6 CR764 - s/spinlock/simple_lock/ (name change only)
57 * [1994/11/10 05:24:14 dwm]
59 * Revision 1.1.16.3 1994/09/23 01:21:01 ezf
60 * change marker to not FREE
61 * [1994/09/22 21:10:46 ezf]
63 * Revision 1.1.16.2 1994/09/16 15:30:07 emcmanus
64 * Add prototype for db_show_subsystem.
65 * [1994/09/16 15:29:05 emcmanus]
67 * Revision 1.1.16.1 1994/06/11 21:12:10 bolinger
68 * Merge up to NMK17.2.
69 * [1994/06/11 20:04:06 bolinger]
71 * Revision 1.1.18.2 1994/12/06 19:43:09 alanl
72 * Intel merge, Oct 94 code drop.
73 * Added prototypes for db_show_{one,all}_task_vm
76 * Revision 1.1.18.1 1994/08/05 19:35:57 mmp
77 * Remove duplicate prototype for db_show_port_id.
78 * [1994/08/05 19:31:44 mmp]
80 * Revision 1.1.10.3 1994/04/15 18:41:54 paire
81 * Changed db_task_from_space prototype.
84 * Revision 1.1.10.2 1994/03/07 16:37:54 paire
85 * Added ANSI prototype for db_port_kmsg_count routine.
88 * Revision 1.1.10.1 1994/02/08 10:58:27 bernadat
89 * Added db_show_one_space
95 * Revision 1.1.2.3 1993/09/17 21:34:40 robert
96 * change marker to OSF_FREE_COPYRIGHT
97 * [1993/09/17 21:27:24 robert]
99 * Revision 1.1.2.2 1993/07/27 18:28:01 elliston
100 * Add ANSI prototypes. CR #9523.
101 * [1993/07/27 18:12:43 elliston]
106 #ifndef _DDB_DB_PRINT_H_
107 #define _DDB_DB_PRINT_H_
109 #include <mach/boolean.h>
110 #include <machine/db_machdep.h>
112 /* Prototypes for functions exported by this module.
120 void db_show_all_acts(
126 void db_show_one_act(
132 void db_show_one_thread(
138 void db_show_one_task(
144 void db_show_shuttle(
150 void db_show_port_id(
156 void db_show_one_task_vm(
162 void db_show_all_task_vm(
168 void db_show_one_space(
174 void db_show_all_spaces(
182 int db_port_kmsg_count(
185 db_addr_t
db_task_from_space(
189 void db_show_one_simple_lock(
201 void db_show_one_lock(lock_t
*);
203 #endif /* !_DDB_DB_PRINT_H_ */