1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

Kernel: Tidy up FileDescriptor members a bit.

This commit is contained in:
Andreas Kling 2019-05-18 04:14:22 +02:00
parent 123283d840
commit 237628a7a6
5 changed files with 10 additions and 13 deletions

View file

@ -110,13 +110,10 @@ private:
ByteBuffer m_generator_cache;
bool m_is_blocking { true };
dword m_file_flags { 0 };
bool m_is_blocking { true };
SocketRole m_socket_role { SocketRole::None };
FIFO::Direction m_fifo_direction { FIFO::Neither };
bool m_closed { false };
FIFO::Direction m_fifo_direction { FIFO::Direction::Neither };
};