1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-23 09:17:36 +00:00

Kernel: Make fcntl(F_SETFL) actually update the append/blocking flags.

This commit is contained in:
Andreas Kling 2019-05-30 15:37:51 +02:00
parent 7710863e3c
commit 8fe72d7b3c
3 changed files with 11 additions and 6 deletions

View file

@ -72,7 +72,7 @@ public:
void set_should_append(bool s) { m_should_append = s; }
dword file_flags() const { return m_file_flags; }
void set_file_flags(dword flags) { m_file_flags = flags; }
void set_file_flags(dword);
bool is_socket() const;
Socket* socket();