From 258626f4550be2e586c9e5acf20cb71ee001a8e4 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Tue, 15 Feb 2011 19:43:04 +0000 Subject: Fix the shutdown sequence for maemo, SDL and simulator builds Do proper shutdown in RaaA builds like writeout of last.FM scrobbler file and other neat things. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29309 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/common/powermgmt-sim.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'uisimulator/common/powermgmt-sim.c') diff --git a/uisimulator/common/powermgmt-sim.c b/uisimulator/common/powermgmt-sim.c index dbd3149fbb..30b04d6a0b 100644 --- a/uisimulator/common/powermgmt-sim.c +++ b/uisimulator/common/powermgmt-sim.c @@ -24,6 +24,7 @@ #include #include "kernel.h" #include "powermgmt.h" +#include #define BATT_MINMVOLT 2500 /* minimum millivolts of battery */ #define BATT_MAXMVOLT 4500 /* maximum millivolts of battery */ @@ -155,6 +156,11 @@ void reset_poweroff_timer(void) void shutdown_hw(void) { + /* Shut down SDL event loop */ + SDL_Event event; + memset(&event, 0, sizeof(SDL_Event)); + event.type = SDL_USEREVENT; + SDL_PushEvent(&event); } void cancel_shutdown(void) -- cgit v1.2.3