diff options
author | emaste <emaste@FreeBSD.org> | 2015-09-24 20:01:52 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2015-09-24 20:01:52 +0000 |
commit | 6f0e49046fb9114221e30a5f9552d63de949ec37 (patch) | |
tree | ea64226f7527c077320e1b255cb3c2cddcf39e40 | |
parent | 571ffb8a8df95091916185c1b1aaafece711edbc (diff) | |
download | FreeBSD-src-6f0e49046fb9114221e30a5f9552d63de949ec37.zip FreeBSD-src-6f0e49046fb9114221e30a5f9552d63de949ec37.tar.gz |
MFC r279698: Update the ELFOSABI_* constants.
Two new operating systems have been added in the meantime.
ELFOSABI_FENIXOS that uses value 16 (published in the latest draft) and
ELFOSABI_CLOUDABI that uses value 17 (to be published in the next draft).
-rw-r--r-- | sys/sys/elf_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/elf_common.h b/sys/sys/elf_common.h index 5cf8c4b..88d2954 100644 --- a/sys/sys/elf_common.h +++ b/sys/sys/elf_common.h @@ -114,6 +114,8 @@ typedef struct { #define ELFOSABI_OPENVMS 13 /* Open VMS */ #define ELFOSABI_NSK 14 /* HP Non-Stop Kernel */ #define ELFOSABI_AROS 15 /* Amiga Research OS */ +#define ELFOSABI_FENIXOS 16 /* FenixOS */ +#define ELFOSABI_CLOUDABI 17 /* Nuxi CloudABI */ #define ELFOSABI_ARM 97 /* ARM */ #define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */ |