aboutsummaryrefslogtreecommitdiffstats
path: root/android/qemulator.c
diff options
context:
space:
mode:
authorVladimir Chtchetkine <vchtchetkine@google.com>2011-01-20 18:02:35 -0800
committerVladimir Chtchetkine <vchtchetkine@google.com>2011-01-25 13:37:49 -0800
commit6b985d708d64008eee69fe0c3f03c6e3c61e7f73 (patch)
tree640fa2d7595e61216b042e82b4fe07c59e1742a5 /android/qemulator.c
parentb2d3df36e6e0d22c00fcddb51f9b0f4f754bfda4 (diff)
downloadexternal_qemu-6b985d708d64008eee69fe0c3f03c6e3c61e7f73.zip
external_qemu-6b985d708d64008eee69fe0c3f03c6e3c61e7f73.tar.gz
external_qemu-6b985d708d64008eee69fe0c3f03c6e3c61e7f73.tar.bz2
Implement UI control service and client
Change-Id: Iecc1b5bb9ddcdaf9f22c500a5195718db3f25354
Diffstat (limited to 'android/qemulator.c')
-rw-r--r--android/qemulator.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/android/qemulator.c b/android/qemulator.c
index 054c5a6..a5f0dc0 100644
--- a/android/qemulator.c
+++ b/android/qemulator.c
@@ -25,6 +25,7 @@ static QEmulator qemulator[1];
static void handle_key_command( void* opaque, SkinKeyCommand command, int param );
static void qemulator_refresh(QEmulator* emulator);
+extern void qemu_system_shutdown_request(void);
static void
qemulator_light_brightness( void* opaque, const char* light, int value )
@@ -592,7 +593,7 @@ static void qemulator_refresh(QEmulator* emulator)
#endif
/* only save emulator config through clean exit */
qemulator_done(qemulator_get());
- android_core_system_shutdown_request();
+ qemu_system_shutdown_request();
return;
}
}