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
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00
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;
};
}