]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/ddb/db_aout.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@
26 * Symbol table routines for a.out format files.
29 #ifndef _DDB_DB_AOUT_H_
30 #define _DDB_DB_AOUT_H_
32 #include <machine/db_machdep.h> /* data types */
33 #include <ddb/db_sym.h> /* db_symtab_t */
35 boolean_t
aout_db_sym_init(
41 db_sym_t
aout_db_lookup(
45 int aout_db_lookup_incomplete(
52 int aout_db_print_completion(
56 db_sym_t
aout_db_search_symbol(
59 db_strategy_t strategy
,
60 db_expr_t
*diffp
); /* in/out */
62 void aout_db_symbol_values(
67 db_sym_t
aout_db_search_by_addr(
76 boolean_t
aout_db_line_at_pc(
83 int aout_db_qualified_print_completion(
87 void aout_db_init(void);
89 #endif /* !_DDB_DB_AOUT_H_ */