diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-03 15:32:05 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-10 17:12:14 +0200 |
commit | 1ec0a201bedf5299ba157322508d438b426cf8f6 (patch) | |
tree | 5e5726d8deddc3c431da0591a1faa50be402ec01 /src/test-binding.c | |
parent | 92f8820eca4e0a42a4fde07a143ce4c6de3dfebb (diff) |
Add an exit handler also in LUA.
Needs to make it as a parameter tested at the end of
afb request call "launch_all_test".
Change-Id: I87b93aae67561e5aec0a138bfbdc0dabac3bdc21
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/test-binding.c')
-rw-r--r-- | src/test-binding.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test-binding.c b/src/test-binding.c index aa9fde5..d465994 100644 --- a/src/test-binding.c +++ b/src/test-binding.c @@ -41,8 +41,6 @@ static void ctrlapi_ping(AFB_ReqT request) { count++; AFB_ReqNotice(request, "Controller:ping count=%d", count); AFB_ReqSuccess(request, json_object_new_int(count), NULL); - - return; } static void ctrlapi_exit(AFB_ReqT request) { @@ -50,8 +48,6 @@ static void ctrlapi_exit(AFB_ReqT request) { AFB_ReqNotice(request, "Exiting..."); AFB_ReqSuccess(request, NULL, NULL); exit(0); - - return; } static AFB_ApiVerbs CtrlApiVerbs[] = { |