diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2017-12-04 13:52:09 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2017-12-05 00:24:20 +0000 |
commit | d98f1a66cdf83b70e3a84f0e3faeb72f12ac99bb (patch) | |
tree | a41fb6255d5c66023677ea1c72b45e75ce9f4f04 | |
parent | 68a847ff87b8c2ed3b016797d64154a69ddef119 (diff) |
Remove exit code when the websocket connection is disconnectedeel_4.99.4eel/4.99.44.99.4
When the websocket connection to Window Manager is disconnected
due to some reason, libwindowmanager calls exit(1).
Remove this not to kill applications suddenly.
Change-Id: Ibab1600de0e6ea52ec7858fedcdff5a26cde4ab3
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r-- | src/libwindowmanager.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libwindowmanager.cpp b/src/libwindowmanager.cpp index 57e4c04..4a9b951 100644 --- a/src/libwindowmanager.cpp +++ b/src/libwindowmanager.cpp @@ -155,7 +155,6 @@ void onHangup(void *closure, afb_wsj1 *wsj1) { UNUSED(closure); UNUSED(wsj1); HMI_ERROR("libwm", "Hangup, the WindowManager vanished"); - exit(1); } constexpr struct afb_wsj1_itf itf = { |