Changeset 52e1708 in rtems


Ignore:
Timestamp:
11/10/97 17:31:11 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
a307f79
Parents:
87926ab
Message:

Set return code to avoid spurious errors.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libcsupport/src/termios.c

    r87926ab r52e1708  
    267267        rtems_status_code sc;
    268268
     269        args->ioctl_return = 0;
    269270        sc = rtems_semaphore_obtain (ttyMutex, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
    270271        if (sc != RTEMS_SUCCESSFUL)
  • c/src/lib/libc/termios.c

    r87926ab r52e1708  
    267267        rtems_status_code sc;
    268268
     269        args->ioctl_return = 0;
    269270        sc = rtems_semaphore_obtain (ttyMutex, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
    270271        if (sc != RTEMS_SUCCESSFUL)
  • cpukit/libcsupport/src/termios.c

    r87926ab r52e1708  
    267267        rtems_status_code sc;
    268268
     269        args->ioctl_return = 0;
    269270        sc = rtems_semaphore_obtain (ttyMutex, RTEMS_WAIT, RTEMS_NO_TIMEOUT);
    270271        if (sc != RTEMS_SUCCESSFUL)
Note: See TracChangeset for help on using the changeset viewer.