ladybird/Libraries/LibC/termios.cpp

52 lines
881 B
C++
Raw Normal View History

2019-06-07 12:49:03 +03:00
#include <Kernel/Syscall.h>
#include <assert.h>
#include <errno.h>
#include <sys/ioctl.h>
2019-06-07 12:49:03 +03:00
#include <termios.h>
extern "C" {
int tcgetattr(int fd, struct termios* t)
{
return ioctl(fd, TCGETS, t);
}
int tcsetattr(int fd, int optional_actions, const struct termios* t)
{
switch (optional_actions) {
case TCSANOW:
return ioctl(fd, TCSETS, t);
case TCSADRAIN:
return ioctl(fd, TCSETSW, t);
case TCSAFLUSH:
return ioctl(fd, TCSETSF, t);
}
errno = EINVAL;
return -1;
}
int tcflow(int fd, int action)
{
2019-06-07 12:49:03 +03:00
(void)fd;
(void)action;
ASSERT_NOT_REACHED();
}
int tcflush(int fd, int queue_selector)
{
(void)fd;
(void)queue_selector;
ASSERT_NOT_REACHED();
}
2019-02-26 17:57:59 +03:00
speed_t cfgetispeed(const struct termios* tp)
{
2019-02-26 17:57:59 +03:00
return tp->c_ispeed;
}
speed_t cfgetospeed(const struct termios* tp)
{
return tp->c_ospeed;
}
}