Changeset 5618997d in rtems
- Timestamp:
- 02/22/18 14:34:48 (5 years ago)
- Branches:
- 5, master
- Children:
- 0d44e251
- Parents:
- 40c623a8
- git-author:
- Sebastian Huber <sebastian.huber@…> (02/22/18 14:34:48)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (02/22/18 14:35:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/src/termios.c
r40c623a8 r5618997d 373 373 ) 374 374 { 375 rtems_status_code sc;376 377 375 if (tty == NULL) { 378 376 static char c = 'a'; … … 491 489 */ 492 490 if (tty->handler.mode == TERMIOS_TASK_DRIVEN) { 491 rtems_status_code sc; 492 493 493 sc = rtems_task_create ( 494 494 rtems_build_name ('T', 'x', 'T', c), … … 517 517 rtems_binary_semaphore_init (&tty->rawInBuf.Semaphore, 518 518 "termios raw input"); 519 if (sc != RTEMS_SUCCESSFUL)520 rtems_fatal_error_occurred (sc);521 519 } 522 520 … … 574 572 */ 575 573 if (tty->handler.mode == TERMIOS_TASK_DRIVEN) { 574 rtems_status_code sc; 575 576 576 sc = rtems_task_start( 577 577 tty->rxTaskId, rtems_termios_rxdaemon, (rtems_task_argument)tty);
Note: See TracChangeset
for help on using the changeset viewer.