From 3f1668290da19734dcbfed633b6f415d1fa21a1a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 26 Aug 2020 18:01:03 +0200 Subject: Started stack allocator. This will replace the current linear allocator so we can free and realloc memory correctly. This is especially important for the window resizing due to a fixed LFB size. --- apps/wm.c | 1 - 1 file changed, 1 deletion(-) (limited to 'apps') diff --git a/apps/wm.c b/apps/wm.c index 1c6fa2b..c045914 100644 --- a/apps/wm.c +++ b/apps/wm.c @@ -141,7 +141,6 @@ int main(int argc, char **argv) default: printf("Unknown WM request %d from pid %d\n", msg->type, msg->src); } - yield(); }; return 0; -- cgit v1.2.3