mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:17:44 +00:00
Libraries: Create top level directory for libraries.
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
This commit is contained in:
parent
63814ffebf
commit
04b9dc2d30
328 changed files with 36 additions and 36 deletions
51
Libraries/LibC/termios.cpp
Normal file
51
Libraries/LibC/termios.cpp
Normal file
|
@ -0,0 +1,51 @@
|
|||
#include <Kernel/Syscall.h>
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <sys/ioctl.h>
|
||||
#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)
|
||||
{
|
||||
(void)fd;
|
||||
(void)action;
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
int tcflush(int fd, int queue_selector)
|
||||
{
|
||||
(void)fd;
|
||||
(void)queue_selector;
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
speed_t cfgetispeed(const struct termios* tp)
|
||||
{
|
||||
return tp->c_ispeed;
|
||||
}
|
||||
|
||||
speed_t cfgetospeed(const struct termios* tp)
|
||||
{
|
||||
return tp->c_ospeed;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue