Welcome to mirror list, hosted at ThFree Co, Russian Federation.

termios.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac155201d78029fcad976b511e2159041fd0c708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* libc/sys/linux/termios.c - Terminal control */

/* Written 2000 by Werner Almesberger */


#include <errno.h>
#include <sys/types.h>
#include <sys/termios.h>
#include <sys/ioctl.h>


int 
tcgetattr(int fd,struct termios *termios_p)
{
  return ioctl(fd,TCGETS,termios_p);
}


int 
tcsetattr(int fd,int optional_actions,const struct termios *termios_p)
{
  int cmd;

  switch (optional_actions) {
    case TCSANOW:
      cmd = TCSETS;
    break;
    case TCSADRAIN:
      cmd = TCSETSW;
    break;
    case TCSAFLUSH:
      cmd = TCSETSF;
    break;
    default:
      errno = EINVAL;
      return -1;
    }
  return ioctl(fd,cmd,termios_p);
}

#if !defined(_ELIX_LEVEL) || _ELIX_LEVEL >= 4
pid_t 
tcgetpgrp(int fd)
{
  int p;
    
  if (ioctl(fd,TIOCGPGRP,&p) < 0)
    return (pid_t)-1;
  return (pid_t)p;
}


int 
tcsetpgrp(int fd, pid_t pid)
{
  int p = (int)pid;
  return ioctl(fd,TIOCSPGRP,&p);
}
#endif /* !_ELIX_LEVEL || _ELIX_LEVEL >= 4 */

int
tcflow (int fd, int action)
{
  return ioctl (fd, TCXONC, action);
}

int
tcflush (int fd, int queue_selector)
{
  return ioctl (fd, TCFLSH, queue_selector);
}