summaryrefslogtreecommitdiff
path: root/app/src
diff options
context:
space:
mode:
authorsongyanchao <[email protected]>2024-07-12 02:59:16 +0000
committersongyanchao <[email protected]>2024-07-12 02:59:16 +0000
commit24f4ab0940ef3652908b3a5968527951c53f66b8 (patch)
treef4f86f51125c5d8dfd4e98605eb291d74f0f1809 /app/src
parente57941c81a739c323ed79a1c90028b7a516b0c51 (diff)
🐞 fix(TSG-20852): Fix proxy core issue on MarsIO exit.v4.8.16-20240712
Fix proxy core issue on MarsIO exit.
Diffstat (limited to 'app/src')
-rw-r--r--app/src/marsio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/marsio.c b/app/src/marsio.c
index 32bce3a..f61d935 100644
--- a/app/src/marsio.c
+++ b/app/src/marsio.c
@@ -282,7 +282,7 @@ void * marsio_survival_monitor(void * arg)
if (evlist[i].events & (EPOLLHUP | EPOLLERR | EPOLLIN))
{
MR_INFO("marsio is terminated, Exit. ");
- exit(EXIT_FAILURE);
+ _exit(EXIT_FAILURE);
}
}
}