Skip to content

Commit

Permalink
LibC: Stub out tcsendbreak(..) and tcdrain(..)
Browse files Browse the repository at this point in the history
They are required for gdb to build.
  • Loading branch information
bgianfo committed Dec 29, 2021
1 parent 6e2a82d commit 7828d42
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Userland/Libraries/LibC/termios.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ int tcsetattr(int fd, int optional_actions, const struct termios* t)
return -1;
}

// https://pubs.opengroup.org/onlinepubs/009695399/functions/tcsendbreak.html
int tcsendbreak([[maybe_unused]] int fd, [[maybe_unused]] int duration)
{
// FIXME: Implement this for real.
return 0;
}

int tcflow([[maybe_unused]] int fd, [[maybe_unused]] int action)
{
errno = EINVAL;
Expand All @@ -41,6 +48,13 @@ int tcflush(int fd, int queue_selector)
return ioctl(fd, TCFLSH, queue_selector);
}

// https://pubs.opengroup.org/onlinepubs/009695399/functions/tcdrain.html
int tcdrain([[maybe_unused]] int fd)
{
// FIXME: Implement this for real.
return 0;
}

speed_t cfgetispeed(const struct termios* tp)
{
return tp->c_ispeed;
Expand Down
2 changes: 2 additions & 0 deletions Userland/Libraries/LibC/termios.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@

__BEGIN_DECLS

int tcdrain(int fd);
int tcgetattr(int fd, struct termios*);
int tcsetattr(int fd, int optional_actions, const struct termios*);
int tcsendbreak(int fd, int duration);
int tcflow(int fd, int action);
int tcflush(int fd, int queue_selector);

Expand Down

0 comments on commit 7828d42

Please sign in to comment.