diff options
author | Marvin Borner | 2020-08-26 18:01:03 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-26 18:01:03 +0200 |
commit | 3f1668290da19734dcbfed633b6f415d1fa21a1a (patch) | |
tree | 85fa32e14c0db07f98b872f6ba9bf9ac6b4de9ca /apps | |
parent | ae31470ce5d666981ab1fe50cb2b4b38ca4b113f (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')
-rw-r--r-- | apps/wm.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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; |