diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-03-16 16:56:34 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2020-03-16 16:56:34 -0400 |
commit | fe4b2ee65cfe923fcb25427db884e1d2e90fef6e (patch) | |
tree | c741f01d215e8d38120f89c7908fc295784cfb04 /gdb/osabi.h | |
parent | cb9b645d3e6b6164317104ed1a2a41c06da37bf4 (diff) | |
download | gdb-fe4b2ee65cfe923fcb25427db884e1d2e90fef6e.zip gdb-fe4b2ee65cfe923fcb25427db884e1d2e90fef6e.tar.gz gdb-fe4b2ee65cfe923fcb25427db884e1d2e90fef6e.tar.bz2 |
gdb: move enum gdb_osabi to osabi.h
I think it makes sense to have it there instead of in the catch-all
defs.h.
gdb/ChangeLog:
* defs.h (enum gdb_osabi): Move to...
* osabi.h (enum gdb_osabi): ... here.
* gdbarch.sh: Include osabi.h in gdbarch.h.
* gdbarch.h: Re-generate.
Diffstat (limited to 'gdb/osabi.h')
-rw-r--r-- | gdb/osabi.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gdb/osabi.h b/gdb/osabi.h index bb0812e..ff63db4 100644 --- a/gdb/osabi.h +++ b/gdb/osabi.h @@ -19,6 +19,37 @@ #ifndef OSABI_H #define OSABI_H +/* * List of known OS ABIs. If you change this, make sure to update the + table in osabi.c. */ +enum gdb_osabi +{ + GDB_OSABI_UNKNOWN = 0, /* keep this zero */ + GDB_OSABI_NONE, + + GDB_OSABI_SVR4, + GDB_OSABI_HURD, + GDB_OSABI_SOLARIS, + GDB_OSABI_LINUX, + GDB_OSABI_FREEBSD, + GDB_OSABI_NETBSD, + GDB_OSABI_OPENBSD, + GDB_OSABI_WINCE, + GDB_OSABI_GO32, + GDB_OSABI_QNXNTO, + GDB_OSABI_CYGWIN, + GDB_OSABI_AIX, + GDB_OSABI_DICOS, + GDB_OSABI_DARWIN, + GDB_OSABI_SYMBIAN, + GDB_OSABI_OPENVMS, + GDB_OSABI_LYNXOS178, + GDB_OSABI_NEWLIB, + GDB_OSABI_SDE, + GDB_OSABI_PIKEOS, + + GDB_OSABI_INVALID /* keep this last */ +}; + /* Register an OS ABI sniffer. Each arch/flavour may have more than one sniffer. This is used to e.g. differentiate one OS's a.out from another. The first sniffer to return something other than |