From 844a19f9bfe01286ca9974aff0e6d38693e05877 Mon Sep 17 00:00:00 2001 From: pk33 Date: Sun, 3 Nov 2024 12:07:55 +0100 Subject: cleanup code & term handlers --- src/main.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 150f16c..1b9b2d3 100644 --- a/src/main.c +++ b/src/main.c @@ -2,6 +2,9 @@ #include "clock.h" #include "logger.h" #include "system.h" +#include "signal.h" + +static void _term_sighandler( int sig ); int main(int argc, char *argv[]) @@ -9,6 +12,10 @@ int main(int argc, char *argv[]) Size fps, FPS; long timeOld, time; + if( e33_set_signal( SIGHUP, _term_sighandler ) == -1 ) { logw( "SIGHUP not handled"); } + if( e33_set_signal( SIGINT, _term_sighandler ) == -1 ) { logw( "SIGINT not handled"); } + if( e33_set_signal( SIGTERM, _term_sighandler ) == -1 ) { logw( "SIGTERM not handled"); } + timeOld = clock_get_us(); time = 0; fps = 0; @@ -52,3 +59,12 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; } + + +static void _term_sighandler( int sig ) +{ + display_term(); + logger_term(); + exit(0); +} + -- cgit v1.2.3