mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel+LibC: Switch isatty() to use a fcntl()
We would want it to work with only stdio pledged.
This commit is contained in:
parent
f9cffda0e0
commit
7541122206
Notes:
sideshowbarker
2024-07-19 06:22:57 +09:00
Author: https://github.com/bugaevc Commit: https://github.com/SerenityOS/serenity/commit/75411222064 Pull-request: https://github.com/SerenityOS/serenity/pull/2299 Reviewed-by: https://github.com/awesomekling
4 changed files with 5 additions and 2 deletions
|
@ -1845,6 +1845,8 @@ int Process::sys$fcntl(int fd, int cmd, u32 arg)
|
|||
case F_SETFL:
|
||||
description->set_file_flags(arg);
|
||||
break;
|
||||
case F_ISTTY:
|
||||
return description->is_tty();
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
#define F_SETFD 2
|
||||
#define F_GETFL 3
|
||||
#define F_SETFL 4
|
||||
#define F_ISTTY 5
|
||||
|
||||
#define FD_CLOEXEC 1
|
||||
|
||||
|
|
|
@ -36,6 +36,7 @@ __BEGIN_DECLS
|
|||
#define F_SETFD 2
|
||||
#define F_GETFL 3
|
||||
#define F_SETFL 4
|
||||
#define F_ISTTY 5
|
||||
|
||||
#define FD_CLOEXEC 1
|
||||
|
||||
|
|
|
@ -413,8 +413,7 @@ int rmdir(const char* pathname)
|
|||
|
||||
int isatty(int fd)
|
||||
{
|
||||
struct termios dummy;
|
||||
return tcgetattr(fd, &dummy) == 0;
|
||||
return fcntl(fd, F_ISTTY);
|
||||
}
|
||||
|
||||
int dup(int old_fd)
|
||||
|
|
Loading…
Reference in a new issue