py/stream: Introduce MP_STREAM_GET_FILENO ioctl request.

Can be used by POSIX-like systems that associate file numbers with a file.
This commit is contained in:
Damien George 2018-07-20 13:08:41 +10:00
parent 7a67f057d7
commit 7a4f1b00f6
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@
#define MP_STREAM_SET_OPTS (7) // Set stream options
#define MP_STREAM_GET_DATA_OPTS (8) // Get data/message options
#define MP_STREAM_SET_DATA_OPTS (9) // Set data/message options
#define MP_STREAM_GET_FILENO (10) // Get fileno of underlying file
// These poll ioctl values are compatible with Linux
#define MP_STREAM_POLL_RD (0x0001)