From 2f529f9b558ca1c1bd74be7437a84e4711743404 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Fri, 01 Nov 2024 02:11:33 +0000 Subject: [PATCH] add xenomai --- kernel/include/uapi/asm-generic/fcntl.h | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/kernel/include/uapi/asm-generic/fcntl.h b/kernel/include/uapi/asm-generic/fcntl.h index 9dc0bf0..11415c6 100644 --- a/kernel/include/uapi/asm-generic/fcntl.h +++ b/kernel/include/uapi/asm-generic/fcntl.h @@ -89,6 +89,15 @@ #define __O_TMPFILE 020000000 #endif +/* + * Tells the open call that out-of-band operations should be enabled + * for the file (if supported). Can also be passed along to socket(2) + * via the type argument as SOCK_OOB. + */ +#ifndef O_OOB +#define O_OOB 010000000000 +#endif + /* a horrid kludge trying to make sure that this will fail on old kernels */ #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY) #define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT) -- Gitblit v1.6.2