1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:15:09 +00:00

Move WindowServer into Servers.

This commit is contained in:
Andreas Kling 2019-03-20 04:34:14 +01:00
parent 9120b05a40
commit d17a91f185
32 changed files with 14 additions and 14 deletions

View file

@ -0,0 +1,26 @@
#include <WindowServer/WSScreen.h>
#include <WindowServer/WSWindowManager.h>
#include <WindowServer/WSMessageLoop.h>
#include <signal.h>
#include <stdio.h>
int main(int, char**)
{
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_flags = SA_NOCLDWAIT;
act.sa_handler = SIG_IGN;
int rc = sigaction(SIGCHLD, &act, nullptr);
if (rc < 0) {
perror("sigaction");
return 1;
}
WSMessageLoop loop;
WSScreen screen(1024, 768);
WSWindowManager window_manager;
dbgprintf("Entering WindowServer main loop.\n");
WSMessageLoop::the().exec();
ASSERT_NOT_REACHED();
}