LibC: Don't crash when calling tcflush()
This commit is contained in:
parent
6cda639869
commit
a12bfe4639
|
@ -71,7 +71,7 @@ int tcflow(int, int);
|
||||||
int tcflush(int fd, int queue_selector)
|
int tcflush(int fd, int queue_selector)
|
||||||
{
|
{
|
||||||
dwarnln("FIXME: tcflush({}, {})", fd, queue_selector);
|
dwarnln("FIXME: tcflush({}, {})", fd, queue_selector);
|
||||||
ASSERT_NOT_REACHED();
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int tcgetattr(int fildes, struct termios* termios)
|
int tcgetattr(int fildes, struct termios* termios)
|
||||||
|
|
Loading…
Reference in New Issue