diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-02-09 02:28:49 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-09 23:56:22 +0100 |
commit | cd86f005ee31fd6e9bfdb378cf3fba22964a6598 (patch) | |
tree | 598ddb3d121e7de5c5cd7e0c692c671a8f9e4115 /ddb/db_aout.h | |
parent | 86064b6ea5613e919918e31a992dcb764bca24b5 (diff) | |
download | gnumach-cd86f005ee31fd6e9bfdb378cf3fba22964a6598.tar.gz gnumach-cd86f005ee31fd6e9bfdb378cf3fba22964a6598.tar.bz2 gnumach-cd86f005ee31fd6e9bfdb378cf3fba22964a6598.zip |
Remove a.out support for ddb
We haven't built gnumach using a.out for a very long time.
Message-Id: <Y+SgsQ3y8pPqfxRV@jupiter.tail36e24.ts.net>
Diffstat (limited to 'ddb/db_aout.h')
-rw-r--r-- | ddb/db_aout.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/ddb/db_aout.h b/ddb/db_aout.h deleted file mode 100644 index 7c03d36d..00000000 --- a/ddb/db_aout.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) 2013 Free Software Foundation. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -#ifndef _DDB_DB_AOUT_H_ -#define _DDB_DB_AOUT_H_ - -#include <ddb/db_sym.h> -#include <machine/db_machdep.h> - -extern boolean_t -aout_db_line_at_pc( - db_symtab_t *stab, - db_sym_t sym, - char **file, - int *line, - db_addr_t pc); - -extern db_sym_t -aout_db_lookup( - db_symtab_t *stab, - char * symstr); - -extern db_sym_t -aout_db_search_symbol( - db_symtab_t * symtab, - db_addr_t off, - db_strategy_t strategy, - db_expr_t *diffp); - -extern void -aout_db_symbol_values( - db_symtab_t *stab, - db_sym_t sym, - char **namep, - db_expr_t *valuep); - -#endif /* _DDB_DB_AOUT_H_ */ |