diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-09-15 04:54:19 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-09-15 04:54:19 +0000 |
commit | ae51aa75345e23d8c7bd645b7420060055b65a8b (patch) | |
tree | 9c1ffb7465e756f14852645698d28487551b7975 | |
parent | 0a7ecf760626aead6b396fec1664a13f57f63413 (diff) | |
download | musl-ae51aa75345e23d8c7bd645b7420060055b65a8b.tar.gz musl-ae51aa75345e23d8c7bd645b7420060055b65a8b.tar.xz musl-ae51aa75345e23d8c7bd645b7420060055b65a8b.zip |
sys/socket.h: add new SO_BUSY_POLL socket option
low latency busy poll sockets are new in linux v3.11
-rw-r--r-- | include/sys/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/socket.h b/include/sys/socket.h index 08488c8b..9fd20256 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -199,6 +199,7 @@ struct linger #define SO_NOFCS 43 #define SO_LOCK_FILTER 44 #define SO_SELECT_ERR_QUEUE 45 +#define SO_BUSY_POLL 46 #ifndef SOL_SOCKET #define SOL_SOCKET 1 |