Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/_termios.h
Show First 20 Lines • Show All 91 Lines • ▼ Show 20 Lines | |||||
#define ICRNL 0x00000100 /* map CR to NL (ala CRMOD) */ | #define ICRNL 0x00000100 /* map CR to NL (ala CRMOD) */ | ||||
#define IXON 0x00000200 /* enable output flow control */ | #define IXON 0x00000200 /* enable output flow control */ | ||||
#define IXOFF 0x00000400 /* enable input flow control */ | #define IXOFF 0x00000400 /* enable input flow control */ | ||||
#if __XSI_VISIBLE || __POSIX_VISIBLE >= 200809 | #if __XSI_VISIBLE || __POSIX_VISIBLE >= 200809 | ||||
#define IXANY 0x00000800 /* any char will restart after stop */ | #define IXANY 0x00000800 /* any char will restart after stop */ | ||||
#endif | #endif | ||||
#if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
#define IMAXBEL 0x00002000 /* ring bell on input queue full */ | #define IMAXBEL 0x00002000 /* ring bell on input queue full */ | ||||
#define IUTF8 0x00004000 /* assume input is utf-8 encoded */ | |||||
#endif | #endif | ||||
imp: what standard defines this symbol? I think we'll need some visibility tweaks. | |||||
Done Inline ActionsFrom what I can tell this is a non-standard symbol that was introduced in Linux at some point, but aside from that the actual symbol name is not set in stone. I'm open to suggestions for different names :D bnovkov: From what I can tell this is a non-standard symbol that was introduced in Linux at some point… | |||||
Done Inline ActionsThen ot needs to be hidden behind BSD_VISIBLE imp: Then ot needs to be hidden behind BSD_VISIBLE | |||||
/* | /* | ||||
* Output flags - software output processing | * Output flags - software output processing | ||||
*/ | */ | ||||
#define OPOST 0x00000001 /* enable following output processing */ | #define OPOST 0x00000001 /* enable following output processing */ | ||||
#if __XSI_VISIBLE | #if __XSI_VISIBLE | ||||
#define ONLCR 0x00000002 /* map NL to CR-NL (ala CRMOD) */ | #define ONLCR 0x00000002 /* map NL to CR-NL (ala CRMOD) */ | ||||
#endif | #endif | ||||
#if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
▲ Show 20 Lines • Show All 128 Lines • Show Last 20 Lines |
what standard defines this symbol? I think we'll need some visibility tweaks.