source: rtems/cpukit/libcsupport/src/tcsetattr.c @ f68401e

4.115
Last change on this file since f68401e was bcd0ea64, checked in by Alex Ivanov <alexivanov97@…>, on 12/09/12 at 22:55:17

libcsupport: Doxygen enhancement task #2

http://www.google-melange.com/gci/task/view/google/gci2012/8017203

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief Get and Set State
5 *  @ingroup libcsupport
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-1999.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems.h>
22#if defined(RTEMS_NEWLIB)
23
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <errno.h>
27#include <termios.h>
28/* #include <sys/ioctl.h> */
29
30#include <rtems/libio.h>
31#include <rtems/libio_.h>
32#include <rtems/seterr.h>
33
34/**
35 *  POSIX 1003.1b 7.2.1 - Get and Set State
36 */
37int tcsetattr(
38  int             fd,
39  int             opt,
40  struct termios *tp
41)
42{
43  switch (opt) {
44  default:
45    rtems_set_errno_and_return_minus_one( ENOTSUP );
46
47  case TCSADRAIN:
48    if (ioctl( fd, RTEMS_IO_TCDRAIN, NULL ) < 0)
49        return -1;
50    /*
51     * Fall through to....
52     */
53  case TCSANOW:
54    return ioctl( fd, RTEMS_IO_SET_ATTRIBUTES, tp );
55  }
56}
57#endif
Note: See TracBrowser for help on using the repository browser.