diff options
author | kib <kib@FreeBSD.org> | 2008-11-22 12:36:15 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2008-11-22 12:36:15 +0000 |
commit | 8fad2283b3211a15c495b42689a5b65d91b96f3b (patch) | |
tree | c5e6cdb7219d5ec854c9a25a01e8ddfce232c5e9 /sys/mips | |
parent | 45f7975419230cdc3b0ba2cffb4b5fdebf5607bd (diff) | |
download | FreeBSD-src-8fad2283b3211a15c495b42689a5b65d91b96f3b.zip FreeBSD-src-8fad2283b3211a15c495b42689a5b65d91b96f3b.tar.gz |
Add sv_flags field to struct sysentvec with intention to provide description
of the ABI of the currently executing image. Change some places to test
the flags instead of explicit comparing with address of known sysentvec
structures to determine ABI features.
Discussed with: dchagin, imp, jhb, peter
Diffstat (limited to 'sys/mips')
-rw-r--r-- | sys/mips/mips/elf_machdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/mips/mips/elf_machdep.c b/sys/mips/mips/elf_machdep.c index 0234722..dc08bc2 100644 --- a/sys/mips/mips/elf_machdep.c +++ b/sys/mips/mips/elf_machdep.c @@ -74,7 +74,8 @@ struct sysentvec elf32_freebsd_sysvec = { .sv_copyout_strings = exec_copyout_strings, .sv_setregs = exec_setregs, .sv_fixlimit = NULL, - .sv_maxssiz = NULL + .sv_maxssiz = NULL, + .sv_flags = SV_ABI_FREEBSD | SV_ILP32 }; static Elf32_Brandinfo freebsd_brand_info = { |