diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-04 12:13:13 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-04 12:26:42 +0200 |
commit | 3aefd00f6aebad7c50210e68650cb8c42e0835cd (patch) | |
tree | d7fe18390e705c0288ac6cd3c2d3c66f13001b8f /src/notify.c | |
parent | 4cd62fb0fba6ddb5c79e3d2dc109b5b7d98612e2 (diff) | |
download | calcurse-3aefd00f6aebad7c50210e68650cb8c42e0835cd.zip |
Cleanup joinable threads on termination
Always invoke pthread_join() when we blow up a thread via
pthread_cancel() (avoid zombie threads).
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/notify.c')
-rw-r--r-- | src/notify.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/notify.c b/src/notify.c index 1b7e924..188d92c 100644 --- a/src/notify.c +++ b/src/notify.c @@ -188,7 +188,10 @@ void notify_stop_main_thread (void) { if (notify_t_main) - pthread_cancel (notify_t_main); + { + pthread_cancel (notify_t_main); + pthread_join (notify_t_main, NULL); + } } /* |