diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-04 20:11:34 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-04 20:11:34 +0000 |
commit | 0ecdffbb60a2723779a37fa17b717d919d670336 (patch) | |
tree | 17aff64cd35df25fee555574ee67af87c5e48ff2 /vl.c | |
parent | 4001a81e8e1af1e4bda63baa404a8ebb4919d1f9 (diff) | |
download | qemu-0ecdffbb60a2723779a37fa17b717d919d670336.zip |
Allow bootdevice change from the monitor
(Gildas Le Nadan)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4333 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -6855,6 +6855,14 @@ void qemu_system_powerdown_request(void) cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT); } +/* boot_set handler */ +QEMUBootSetHandler *qemu_boot_set_handler = NULL; + +void qemu_register_boot_set(QEMUBootSetHandler *func) +{ + qemu_boot_set_handler = func; +} + void main_loop_wait(int timeout) { IOHandlerRecord *ioh; |