Changeset 564ce0f in rtems


Ignore:
Timestamp:
12/06/13 02:21:05 (10 years ago)
Author:
Daniel Ramirez <javamonn@…>
Branches:
4.11, 5, master
Children:
d8cd49cb
Parents:
b6c1578
git-author:
Daniel Ramirez <javamonn@…> (12/06/13 02:21:05)
git-committer:
Joel Sherrill <joel.sherrill@…> (01/07/14 16:34:31)
Message:

libcsupport: implemented termios functions cfsetspeed and cfmakeraw

Location:
cpukit/libcsupport
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libcsupport/Makefile.am

    rb6c1578 r564ce0f  
    6565    src/tcsetpgrp.c src/termios.c src/termiosinitialize.c \
    6666    src/termios_baud2index.c src/termios_baud2num.c src/termios_num2baud.c \
    67     src/termios_setinitialbaud.c src/termios_baudtable.c
     67    src/termios_setinitialbaud.c src/termios_baudtable.c src/cfsetspeed.c \
     68    src/cfmakeraw.c
    6869
    6970SYSTEM_CALL_C_FILES = src/open.c src/close.c src/read.c src/write.c \
  • cpukit/libcsupport/include/sys/termios.h

    rb6c1578 r564ce0f  
    210210speed_t cfgetispeed(const struct termios *tp);
    211211int     cfsetispeed(struct termios *tp, speed_t speed);
     212void    cfmakeraw(struct termios *tp);
     213int     cfsetspeed(struct termios *tp, speed_t speed);
    212214
    213215/** @} */
Note: See TracChangeset for help on using the changeset viewer.