Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Add more flags in termios for Solaris.
Browse files Browse the repository at this point in the history
  • Loading branch information
nykytenko committed Jun 6, 2016
1 parent a92273b commit 738a61b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/core/sys/posix/termios.d
Expand Up @@ -527,6 +527,8 @@ else version (Solaris)
enum HUPCL = 0x000400;
enum CLOCAL = 0x000800;

enum CRTSCTS = 0x10000000;

/* line discipline 0 modes */
enum ISIG = 0x000001;
enum ICANON = 0x000002;
Expand All @@ -537,6 +539,10 @@ else version (Solaris)
enum NOFLSH = 0x000080;
enum TOSTOP = 0x000100;

enum ECHOCTL = 0x000200;
enum ECHOPRT = 0x000400;
enum ECHOKE = 0x000800;

enum IEXTEN = 0x008000; /* POSIX flag - enable POSIX extensions */

enum _TIOC = ('T'<<8);
Expand Down

0 comments on commit 738a61b

Please sign in to comment.