]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/ddb/db_aout.h
8b03e052d3128fc0e0666a25f5f76eee052123e7
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@
29 * Symbol table routines for a.out format files.
32 #ifndef _DDB_DB_AOUT_H_
33 #define _DDB_DB_AOUT_H_
35 #include <machine/db_machdep.h> /* data types */
36 #include <ddb/db_sym.h> /* db_symtab_t */
38 boolean_t
aout_db_sym_init(
44 db_sym_t
aout_db_lookup(
48 int aout_db_lookup_incomplete(
55 int aout_db_print_completion(
59 db_sym_t
aout_db_search_symbol(
62 db_strategy_t strategy
,
63 db_expr_t
*diffp
); /* in/out */
65 void aout_db_symbol_values(
70 db_sym_t
aout_db_search_by_addr(
79 boolean_t
aout_db_line_at_pc(
86 int aout_db_qualified_print_completion(
90 void aout_db_init(void);
92 #endif /* !_DDB_DB_AOUT_H_ */