File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1981,6 +1981,18 @@ pub const TIOCMGET: ::c_int = tIOC | 29;
19811981pub const TIOCREMOTE : :: c_int = tIOC | 30 ;
19821982pub const TIOCSIGNAL : :: c_int = tIOC | 31 ;
19831983
1984+ pub const TIOCM_LE : :: c_int = 0o0001 ;
1985+ pub const TIOCM_DTR : :: c_int = 0o0002 ;
1986+ pub const TIOCM_RTS : :: c_int = 0o0004 ;
1987+ pub const TIOCM_ST : :: c_int = 0o0010 ;
1988+ pub const TIOCM_SR : :: c_int = 0o0020 ;
1989+ pub const TIOCM_CTS : :: c_int = 0o0040 ;
1990+ pub const TIOCM_CAR : :: c_int = 0o0100 ;
1991+ pub const TIOCM_CD : :: c_int = TIOCM_CAR ;
1992+ pub const TIOCM_RNG : :: c_int = 0o0200 ;
1993+ pub const TIOCM_RI : :: c_int = TIOCM_RNG ;
1994+ pub const TIOCM_DSR : :: c_int = 0o0400 ;
1995+
19841996pub const EPOLLIN : :: c_int = 0x1 ;
19851997pub const EPOLLPRI : :: c_int = 0x2 ;
19861998pub const EPOLLOUT : :: c_int = 0x4 ;
You can’t perform that action at this time.
0 commit comments