diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-12-01 23:47:50 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-05 12:53:29 +0100 |
commit | 1f16250de9e752d02e888a2f049164dfae11c128 (patch) | |
tree | 39300fc3e23f9f1c995b8a0ee1051c075816b534 /Userland | |
parent | 0a36d1459abc088d569656354c923c3070427eca (diff) | |
download | serenity-1f16250de9e752d02e888a2f049164dfae11c128.zip |
Kernel: Add the SIOCATMARK ioctl request macro
This is not actually implemented at the moment, as we do not support
sending or receiving out-of-band data at all currently, but it is
required for some ports to compile.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibC/sys/ioctl_numbers.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/sys/ioctl_numbers.h b/Userland/Libraries/LibC/sys/ioctl_numbers.h index fbd3fefe57..0d70d7f63a 100644 --- a/Userland/Libraries/LibC/sys/ioctl_numbers.h +++ b/Userland/Libraries/LibC/sys/ioctl_numbers.h @@ -93,6 +93,7 @@ enum IOCtlNumber { KEYBOARD_IOCTL_SET_NUM_LOCK, KEYBOARD_IOCTL_GET_CAPS_LOCK, KEYBOARD_IOCTL_SET_CAPS_LOCK, + SIOCATMARK, SIOCSIFADDR, SIOCGIFADDR, SIOCGIFHWADDR, @@ -141,6 +142,7 @@ enum IOCtlNumber { #define KEYBOARD_IOCTL_SET_NUM_LOCK KEYBOARD_IOCTL_SET_NUM_LOCK #define KEYBOARD_IOCTL_GET_CAPS_LOCK KEYBOARD_IOCTL_GET_CAPS_LOCK #define KEYBOARD_IOCTL_SET_CAPS_LOCK KEYBOARD_IOCTL_SET_CAPS_LOCK +#define SIOCATMARK SIOCATMARK #define SIOCSIFADDR SIOCSIFADDR #define SIOCGIFADDR SIOCGIFADDR #define SIOCGIFHWADDR SIOCGIFHWADDR |