diff options
Diffstat (limited to 'kernel/include/uapi/linux/kcmp.h')
-rw-r--r-- | kernel/include/uapi/linux/kcmp.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/kernel/include/uapi/linux/kcmp.h b/kernel/include/uapi/linux/kcmp.h new file mode 100644 index 000000000..84df14b37 --- /dev/null +++ b/kernel/include/uapi/linux/kcmp.h @@ -0,0 +1,17 @@ +#ifndef _UAPI_LINUX_KCMP_H +#define _UAPI_LINUX_KCMP_H + +/* Comparison type */ +enum kcmp_type { + KCMP_FILE, + KCMP_VM, + KCMP_FILES, + KCMP_FS, + KCMP_SIGHAND, + KCMP_IO, + KCMP_SYSVSEM, + + KCMP_TYPES, +}; + +#endif /* _UAPI_LINUX_KCMP_H */ |