mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:37:35 +00:00
WindowServer: Use SA_NOCLDWAIT.
This commit is contained in:
parent
274b0260f7
commit
4f9b6a88a6
1 changed files with 12 additions and 0 deletions
|
@ -1,9 +1,21 @@
|
||||||
#include <WindowServer/WSScreen.h>
|
#include <WindowServer/WSScreen.h>
|
||||||
#include <WindowServer/WSWindowManager.h>
|
#include <WindowServer/WSWindowManager.h>
|
||||||
#include <WindowServer/WSMessageLoop.h>
|
#include <WindowServer/WSMessageLoop.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
int main(int, char**)
|
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;
|
WSMessageLoop loop;
|
||||||
WSScreen screen(1024, 768);
|
WSScreen screen(1024, 768);
|
||||||
WSWindowManager window_manager;
|
WSWindowManager window_manager;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue