aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_exit.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 14:23:58 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 14:23:58 +0200
commit3bc9f9e17a36ff034a01f72bea42472067ed983e (patch)
tree8fbb99ff2dd27551f1ce305c3f10d24a1019b237 /src/ft_exit.c
parentMakefile compliant with vm (diff)
download42-cub3d-3bc9f9e17a36ff034a01f72bea42472067ed983e.tar.gz
42-cub3d-3bc9f9e17a36ff034a01f72bea42472067ed983e.tar.bz2
42-cub3d-3bc9f9e17a36ff034a01f72bea42472067ed983e.tar.xz
42-cub3d-3bc9f9e17a36ff034a01f72bea42472067ed983e.tar.zst
42-cub3d-3bc9f9e17a36ff034a01f72bea42472067ed983e.zip
Test
Diffstat (limited to 'src/ft_exit.c')
-rw-r--r--src/ft_exit.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/ft_exit.c b/src/ft_exit.c
index ea5cd2a..e0531c3 100644
--- a/src/ft_exit.c
+++ b/src/ft_exit.c
@@ -46,24 +46,24 @@ static void
if (clist->isoldmus && clist->wlist.inited)
{
- if (FT_OS == 2)
- {
- pthread_cancel(clist->mtid);
- pthread_join(clist->mtid, NULL);
- }
- else if (system(FT_SND_TERM_CMD))
+ /* if (FT_OS == 2) */
+ /* { */
+ /* pthread_cancel(clist->mtid); */
+ /* pthread_join(clist->mtid, NULL); */
+ /* } */
+ if (system(FT_SND_TERM_CMD))
return ;
}
i = -1;
while (++i < FT_TOTAL_SFX)
{
- pthread_mutex_unlock(&clist->sfx[i].mutex);
- if (FT_OS == 2)
- {
- pthread_cancel(clist->sfx[i].tid);
- pthread_join(clist->sfx[i].tid, NULL);
- }
- else if (system(FT_SND_TERM_CMD))
+ /* pthread_mutex_unlock(&clist->sfx[i].mutex); */
+ /* if (FT_OS == 2) */
+ /* { */
+ /* pthread_cancel(clist->sfx[i].tid); */
+ /* pthread_join(clist->sfx[i].tid, NULL); */
+ /* } */
+ if (system(FT_SND_TERM_CMD))
return ;
}
}