From 64ec8aa157e5d5d09372def37cbab00628e1e5f5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 6 Apr 2021 22:20:58 +0200 Subject: Made exec syscall relative using app name My plan is to implement a mobile-OS-like sandboxing using manifests and permission middlewares. Let's see if I can manage to do this without sacrificing too much performance. I'm also wondering whether I should implement open/close syscalls which would result in a cleaner block/unblock mechanism. I need to think. Hmmm.. Naa --- libs/libgui/gfx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/libgui/gfx.h') diff --git a/libs/libgui/gfx.h b/libs/libgui/gfx.h index 082fe07..f01a6a2 100644 --- a/libs/libgui/gfx.h +++ b/libs/libgui/gfx.h @@ -9,7 +9,7 @@ #include #include -#define WM_PATH "/bin/wm" +#define WM_PATH "wm" #define GET_ALPHA(color) ((color >> 24) & 0x000000FF) #define GET_RED(color) ((color >> 16) & 0x000000FF) -- cgit v1.2.3