aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/x86/link_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/x86/link_map.h')
-rw-r--r--sysdeps/x86/link_map.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/sysdeps/x86/link_map.h b/sysdeps/x86/link_map.h
index ef1206a..9367ed0 100644
--- a/sysdeps/x86/link_map.h
+++ b/sysdeps/x86/link_map.h
@@ -19,8 +19,9 @@
/* If this object is enabled with CET. */
enum
{
- lc_none = 0, /* Not enabled with CET. */
- lc_ibt = 1 << 0, /* Enabled with IBT. */
- lc_shstk = 1 << 1, /* Enabled with STSHK. */
+ lc_unknown = 0, /* Unknown CET status. */
+ lc_none = 1 << 0, /* Not enabled with CET. */
+ lc_ibt = 1 << 1, /* Enabled with IBT. */
+ lc_shstk = 1 << 2, /* Enabled with STSHK. */
lc_ibt_and_shstk = lc_ibt | lc_shstk /* Enabled with both. */
- } l_cet:2;
+ } l_cet:3;