diff options
author | dchagin <dchagin@FreeBSD.org> | 2016-01-09 15:44:38 +0000 |
---|---|---|
committer | dchagin <dchagin@FreeBSD.org> | 2016-01-09 15:44:38 +0000 |
commit | 18c167233413ace7a8a90b3291ccd255ba510cc4 (patch) | |
tree | 2dd502aaab8976e7184c48db61fddd6e98e59a43 /sys/i386/linux/linux.h | |
parent | 2e9cc3f70d31eef39a4b3f238bb4d7324769d0c4 (diff) | |
download | FreeBSD-src-18c167233413ace7a8a90b3291ccd255ba510cc4.zip FreeBSD-src-18c167233413ace7a8a90b3291ccd255ba510cc4.tar.gz |
MFC r283407:
Implement vdso - virtual dynamic shared object. Through vdso Linux
exposes functions from kernel with proper DWARF CFI information so that
it becomes easier to unwind through them.
Using vdso is a mandatory for a thread cancelation && cleanup
on a modern glibc.
Diffstat (limited to 'sys/i386/linux/linux.h')
-rw-r--r-- | sys/i386/linux/linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/linux/linux.h b/sys/i386/linux/linux.h index 6a20a68..251c64e 100644 --- a/sys/i386/linux/linux.h +++ b/sys/i386/linux/linux.h @@ -108,7 +108,7 @@ typedef struct { /* * Miscellaneous */ -#define LINUX_AT_COUNT 16 /* Count of used aux entry types. +#define LINUX_AT_COUNT 18 /* Count of used aux entry types. * Keep this synchronized with * elf_linux_fixup() code. */ |