1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Added TERMMODE_NONBLOCK.

This allows user-space to query whether data is available.
This commit is contained in:
Jonas 'Sortie' Termansen 2012-01-22 18:38:46 +01:00
parent ecc3114f2a
commit f6f0d24b5c

View file

@ -31,6 +31,7 @@
#define TERMMODE_UTF8 (1U<<3U) #define TERMMODE_UTF8 (1U<<3U)
#define TERMMODE_LINEBUFFER (1U<<4U) #define TERMMODE_LINEBUFFER (1U<<4U)
#define TERMMODE_ECHO (1U<<5U) #define TERMMODE_ECHO (1U<<5U)
#define TERMMODE_NONBLOCK (1U<<6U)
#endif #endif