mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-09 13:16:26 +00:00
Set nuttx isatty definition according to CONFIG_SERIAL_TERMIOS (#1234)
The isatty definition on nuttx depends on CONFIG_SERIAL_TERMIOS
This commit is contained in:
parent
d0676930dc
commit
bc6eda2803
|
@ -68,6 +68,13 @@ typedef pthread_t korp_thread;
|
||||||
#define O_NOFOLLOW 0
|
#define O_NOFOLLOW 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#undef CONFIG_HAS_ISATTY
|
||||||
|
#ifdef CONFIG_SERIAL_TERMIOS
|
||||||
|
#define CONFIG_HAS_ISATTY 1
|
||||||
|
#else
|
||||||
|
#define CONFIG_HAS_ISATTY 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NuttX doesn't have openat family.
|
* NuttX doesn't have openat family.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue
Block a user