diff --git a/vmlinux/x86/vmlinux.h b/vmlinux/x86/vmlinux.h index b3024593e8cf80d2f2e1181798a8ea2d40c5a4a6..96cd39b94c30e7342ef4900e439fdb7b42a56cde 100644 --- a/vmlinux/x86/vmlinux.h +++ b/vmlinux/x86/vmlinux.h @@ -1 +1,44 @@ -vmlinux_601.h \ No newline at end of file +#ifndef __VMLINUX_H__ +#define __VMLINUX_H__ + +#ifndef BPF_NO_PRESERVE_ACCESS_INDEX +#pragma clang attribute push(__attribute__((preserve_access_index)), apply_to = record) +#endif + +typedef signed char __s8; + +typedef unsigned char __u8; + +typedef short int __s16; + +typedef short unsigned int __u16; + +typedef int __s32; + +typedef unsigned int __u32; + +typedef long long int __s64; + +typedef long long unsigned int __u64; + +typedef __s8 s8; + +typedef __u8 u8; + +typedef __s16 s16; + +typedef __u16 u16; + +typedef __s32 s32; + +typedef __u32 u32; + +typedef __s64 s64; + +typedef __u64 u64; + +enum +{ + false = 0, + true = 1, +};