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

GEventLoop: Rename s_event_fd => s_windowserver_fd.

This commit is contained in:
Andreas Kling 2019-05-14 17:12:09 +02:00
parent 5f7bb9d072
commit 2e0d8ee98f
2 changed files with 17 additions and 17 deletions

View file

@ -32,13 +32,13 @@ public:
private:
virtual void add_file_descriptors_for_select(fd_set& fds, int& max_fd_added) override
{
FD_SET(s_event_fd, &fds);
max_fd_added = s_event_fd;
FD_SET(s_windowserver_fd, &fds);
max_fd_added = s_windowserver_fd;
}
virtual void process_file_descriptors_after_select(const fd_set& fds) override
{
if (FD_ISSET(s_event_fd, &fds))
if (FD_ISSET(s_windowserver_fd, &fds))
drain_messages_from_server();
}
@ -71,5 +71,5 @@ private:
Vector<IncomingWSMessageBundle> m_unprocessed_bundles;
static pid_t s_server_pid;
static int s_my_client_id;
static int s_event_fd;
static int s_windowserver_fd;
};