diff options
| author | songyanchao <[email protected]> | 2024-07-12 02:59:16 +0000 |
|---|---|---|
| committer | songyanchao <[email protected]> | 2024-07-12 02:59:16 +0000 |
| commit | 24f4ab0940ef3652908b3a5968527951c53f66b8 (patch) | |
| tree | f4f86f51125c5d8dfd4e98605eb291d74f0f1809 | |
| parent | e57941c81a739c323ed79a1c90028b7a516b0c51 (diff) | |
🐞 fix(TSG-20852): Fix proxy core issue on MarsIO exit.v4.8.16-20240712
Fix proxy core issue on MarsIO exit.
| -rw-r--r-- | app/src/marsio.c | 2 |
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); } } } |
