factor/extra/io/serial/unix/termios/linux/linux.factor

22 lines
474 B
Factor
Raw Normal View History

2008-08-13 16:18:50 -04:00
! Copyright (C) 2008 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
2009-11-15 11:55:41 -05:00
USING: alien.c-types alien.syntax classes.struct kernel system
unix ;
2009-02-22 18:50:29 -05:00
IN: io.serial.unix.termios
2008-08-13 16:18:50 -04:00
2009-02-22 18:45:04 -05:00
CONSTANT: NCCS 32
2008-08-13 16:18:50 -04:00
TYPEDEF: uchar cc_t
TYPEDEF: uint speed_t
TYPEDEF: uint tcflag_t
2009-09-19 22:10:53 -04:00
STRUCT: termios
{ iflag tcflag_t }
{ oflag tcflag_t }
{ cflag tcflag_t }
{ lflag tcflag_t }
{ line cc_t }
{ cc { cc_t NCCS } }
{ ispeed speed_t }
{ ospeed speed_t } ;