diff options
author | Marvin Borner | 2021-01-10 13:19:50 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-10 13:19:50 +0100 |
commit | 3619c820f8ff5918cf122a031bde6305d32f6528 (patch) | |
tree | 2eb38cc5bfd51529a5e5c603ee9801569307ff17 /libgui/gfx.c | |
parent | ff9c7766edded74f4d522484c828b1bdc7dfa96d (diff) |
Started procfs
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r-- | libgui/gfx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c index b93ee62..986ecda 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -98,9 +98,9 @@ static void draw_rectangle(struct context *ctx, int x1, int y1, int x2, int y2, struct context *gfx_new_ctx(struct context *ctx) { - struct message msg = { 0 }; - msg_send(2, GFX_NEW_CONTEXT, ctx); - memcpy(ctx, msg_receive_loop(&msg)->data, sizeof(*ctx)); + //struct message msg = { 0 }; + //msg_send(2, GFX_NEW_CONTEXT, ctx); + //memcpy(ctx, msg_receive_loop(&msg)->data, sizeof(*ctx)); return ctx; } |