X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=main%2Fenigma.cpp;h=6ea4a640662e7d749e167ccbd9314ccfe8cf0531;hp=91645d893b9f0b694a2a91927d6ff67d59105ce1;hb=2f69db82dd516d3f710abc6d7e7acb34efbd2d52;hpb=31ac4a233ddcb341e49f63f964d4d35fd2097a9c diff --git a/main/enigma.cpp b/main/enigma.cpp index 91645d8..6ea4a64 100644 --- a/main/enigma.cpp +++ b/main/enigma.cpp @@ -122,6 +122,48 @@ public: int exit_code; +void quitMainloop(int exitCode) +{ + FILE *f = fopen("/proc/stb/fp/was_timer_wakeup", "w"); + if (f) + { + fprintf(f, "%d", 0); + fclose(f); + } + else + { + int fd = open("/dev/dbox/fp0", O_WRONLY); + if (fd >= 0) + { + if (ioctl(fd, 10 /*FP_CLEAR_WAKEUP_TIMER*/) < 0) + eDebug("FP_CLEAR_WAKEUP_TIMER failed (%m)"); + close(fd); + } + else + eDebug("open /dev/dbox/fp0 for wakeup timer clear failed!(%m)"); + } + exit_code = exitCode; + eApp->quit(0); +} + +static void sigterm_handler(int num) +{ + quitMainloop(128 + num); +} + +void setSigTermHandler() +{ + struct sigaction act; + + act.sa_handler = sigterm_handler; + act.sa_flags = SA_RESTART; + + if (sigemptyset(&act.sa_mask) == -1) + perror("sigemptyset"); + if (sigaction(SIGTERM, &act, 0) == -1) + perror("SIGTERM"); +} + int main(int argc, char **argv) { #ifdef MEMLEAK_CHECK @@ -232,6 +274,8 @@ int main(int argc, char **argv) bsodCatchSignals(); + setSigTermHandler(); + setIoPrio(IOPRIO_CLASS_BE, 3); // python.execute("mytest", "__main__"); @@ -269,47 +313,9 @@ eApplication *getApplication() return eApp; } -void quitMainloop(int exitCode) -{ - FILE *f = fopen("/proc/stb/fp/was_timer_wakeup", "w"); - if (f) - { - fprintf(f, "%d", 0); - fclose(f); - } - else - { - int fd = open("/dev/dbox/fp0", O_WRONLY); - if (fd >= 0) - { - if (ioctl(fd, 10 /*FP_CLEAR_WAKEUP_TIMER*/) < 0) - eDebug("FP_CLEAR_WAKEUP_TIMER failed (%m)"); - close(fd); - } - else - eDebug("open /dev/dbox/fp0 for wakeup timer clear failed!(%m)"); - } - exit_code = exitCode; - eApp->quit(0); -} - -static void sigterm_handler(int num) -{ - quitMainloop(128 + num); -} - void runMainloop() { - struct sigaction act; - - act.sa_handler = sigterm_handler; - act.sa_flags = SA_RESTART; - - if (sigemptyset(&act.sa_mask) == -1) - perror("sigemptyset"); - if (sigaction(SIGTERM, &act, 0) == -1) - perror("SIGTERM"); - + setSigTermHandler(); eApp->runLoop(); } @@ -327,3 +333,20 @@ void dump_malloc_stats(void) struct mallinfo mi = mallinfo(); eDebug("MALLOC: %d total", mi.uordblks); } + +#ifdef USE_LIBVUGLES2 +#include + +void setAnimation_current(int a) +{ + gles_set_animation_func(a); +} + +void setAnimation_speed(int speed) +{ + gles_set_animation_speed(speed); +} +#else +void setAnimation_current(int a) {} +void setAnimation_speed(int speed) {} +#endif