aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-26 18:01:03 +0200
committerMarvin Borner2020-08-26 18:01:03 +0200
commit3f1668290da19734dcbfed633b6f415d1fa21a1a (patch)
tree85fa32e14c0db07f98b872f6ba9bf9ac6b4de9ca /apps/wm.c
parentae31470ce5d666981ab1fe50cb2b4b38ca4b113f (diff)
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.
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c1
1 files changed, 0 insertions, 1 deletions
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;