Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/x86/include/uapi/asm/elf.h
26495 views
1
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2
#ifndef _UAPI_ASM_X86_ELF_H
3
#define _UAPI_ASM_X86_ELF_H
4
5
#include <linux/types.h>
6
7
struct x86_xfeat_component {
8
__u32 type;
9
__u32 size;
10
__u32 offset;
11
__u32 flags;
12
} __packed;
13
14
_Static_assert(sizeof(struct x86_xfeat_component) % 4 == 0, "x86_xfeat_component is not aligned");
15
16
#endif /* _UAPI_ASM_X86_ELF_H */
17
18