aboutsummaryrefslogtreecommitdiffstats
path: root/monitor.h
Commit message (Collapse)AuthorAgeFilesLines
* monitor.c: minor integrateDavid 'Digit' Turner2011-06-011-4/+8
| | | | Change-Id: I75b9f973655637234466725d7af94f2dd2281fa2
* savevm: Remove OutputBuffer hack.David 'Digit' Turner2011-06-011-0/+13
| | | | | | It's easier to provide a fake Monitor object instead. Change-Id: Ia45267061d489b147497add6120d3caa9234ac11
* monitor.h: cleanupDavid 'Digit' Turner2011-01-021-3/+0
| | | | Change-Id: I364390a724cd01d7b6e127750c330654b78ac229
* Control state snapshots from Android console.Ot ten Thije2010-10-281-1/+1
| | | | | | | | | | | | | This patch exposes Qemu's save, load, delete and list commands for state snapshots on the Android console. A level of indirection is added by means of the OutputChannel construct. This allows us to show the output of the Qemu commands on the console rather than on the monitor, while minimizing the differences with the upstream codebase. The new commands are exposed only when the configuration constant CONFIG_ANDROID_SNAPSHOTS is not 0. Change-Id: I558d5cd505d321fe2da5835713d341d151f60534
* upstream: monitor.hDavid Turner2010-09-131-4/+40
|
* Add new "qemu monitor" command to the console.David 'Digit' Turner2010-09-081-2/+3
| | | | | | | | | | | | | | | | | | | This allows you to access the QEMU virtual machine monitor directly from the console (instead of playing with the command-line to do it). The implementation of the 'quit' command has been modified to simply close the connection, instead of stopping the emulator program. This patch introduces changes that allow a console session to be detached and redirected at runtime to other internal services of the emulator program. This will be useful in the future to implement other features. + doc typo + add proper definitions for CONFIG_ANDROID on config-host.h + remove obsolete sysdeps.h dependency in android/console.c Change-Id: If16cfe41c12a26eb8f56e3a9c24452eafa5efab4
* Merge upstream QEMU 10.0.50 into the Android source tree.David 'Digit' Turner2009-09-141-0/+29
This change integrates many changes from the upstream QEMU sources. Its main purpose is to enable correct ARMv6 and ARMv7 support to the Android emulator. Due to the nature of the upstream code base, this unfortunately also required changes to many other parts of the source. Note that to ensure easier integrations in the future, some source files and directories that have heavy Android-specific customization have been renamed with an -android suffix. The original files are still there for easier integration tracking, but *never* compiled. For example: net.c net-android.c qemu-char.c qemu-char-android.c slirp/ slirp-android/ etc... Tested on linux-x86, darwin-x86 and windows host machines.