From ec77a7037586864ece6505c448ab5c15bf8a57d9 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 10 May 2016 17:25:12 -0400 Subject: refactor how submodules are handled let them own their own memory, so that they can free themselves once they exit the loop. also split out the parts of the terminal that we only want to initialize once, even if we open multiple terminal windows --- src/loop.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/loop.c') diff --git a/src/loop.c b/src/loop.c index 0eeb0ea..be3b3ba 100644 --- a/src/loop.c +++ b/src/loop.c @@ -21,9 +21,14 @@ static void runes_loop_do_after_work(uv_work_t *req, int status); static void runes_loop_timer_cb(uv_timer_t *handle); static void runes_loop_free_handle(uv_handle_t *handle); -void runes_loop_init(RunesLoop *loop) +RunesLoop *runes_loop_new() { + RunesLoop *loop; + + loop = calloc(1, sizeof(RunesLoop)); loop->loop = uv_default_loop(); + + return loop; } void runes_loop_run(RunesLoop *loop) @@ -63,9 +68,11 @@ void runes_loop_timer_set(RunesLoop *loop, int timeout, int repeat, uv_timer_start(timer_req, runes_loop_timer_cb, timeout, repeat); } -void runes_loop_cleanup(RunesLoop *loop) +void runes_loop_delete(RunesLoop *loop) { uv_loop_close(loop->loop); + + free(loop); } static void runes_loop_do_work(uv_work_t *req) -- cgit v1.2.3-54-g00ecf