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

LibCore: Use Core::System::pipe2 for creating the event loops waking FDs

This commit is contained in:
Timothy Flynn 2024-03-12 14:59:17 -04:00 committed by Tim Flynn
parent 40beebca71
commit a973fe13cb
2 changed files with 5 additions and 13 deletions

View file

@ -59,7 +59,7 @@ private:
int m_exit_code { 0 };
// The wake pipe of this event loop needs to be accessible from other threads.
int (*m_wake_pipe_fds)[2];
Array<int, 2>& m_wake_pipe_fds;
};
}