aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_exit.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 18:37:59 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 18:37:59 +0200
commit40ca3988b960128deb2c38b444699e5d8e2f85eb (patch)
treeffefb5f5adfbf2741929a63621823468e81ea6fd /src/ft_exit.c
parentCleaner (diff)
download42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.gz
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.bz2
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.xz
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.tar.zst
42-cub3d-40ca3988b960128deb2c38b444699e5d8e2f85eb.zip
Works but leaks
Diffstat (limited to 'src/ft_exit.c')
-rw-r--r--src/ft_exit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c
index 17b7087..8c85fdb 100644
--- a/src/ft_exit.c
+++ b/src/ft_exit.c
@@ -49,7 +49,7 @@ static void
if (FT_OS == 2)
{
pthread_cancel(clist->mtid);
- pthread_join(clist->mtid, NULL);
+ /* pthread_join(clist->mtid, NULL); */
}
else
system(FT_SND_TERM_CMD);
@@ -59,7 +59,8 @@ static void
{
if (FT_OS == 2)
{
- pthread_cancel(clist->sfx[i].tid);
+ system(FT_SND_TERM_CMD);
+ /* pthread_cancel(clist->sfx[i].tid); */
pthread_join(clist->sfx[i].tid, NULL);
}
else