[Qemu-devel] qemu Makefile.target monitor.c audio/audio.c au...

2006-07-16 Thread Fabrice Bellard
CVSROOT:/sources/qemu Module name:qemu Changes by: Fabrice Bellard06/07/16 18:57:03 Modified files: . : Makefile.target monitor.c audio : audio.c audio.h audio_int.h audio_template.h noaudio.c wavcapture.c L

[Qemu-devel] qemu Changelog

2006-07-16 Thread Fabrice Bellard
CVSROOT:/sources/qemu Module name:qemu Changes by: Fabrice Bellard06/07/16 18:56:50 Modified files: . : Changelog Log message: update CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/qemu/Changelog?cvsroot=qemu&r1=1.120&r2=1.121 ___

[Qemu-devel] Re: [PATCH 2/4] Fix an overflow in term_puts

2006-07-16 Thread Anthony Liguori
Nevermind on this one. I didn't catch that the - 1 actually prevents an overflow :-) Regards, Anthony Liguori On Sun, 16 Jul 2006 13:13:53 -0500, Anthony Liguori wrote: > Regards, > > Anthony Liguori# HG changeset patch > # User [EMAIL PROTECTED] > # Node ID 1cc1aeb53497fcc70843d8fb102da18f1a

[Qemu-devel] [PATCH 4/4] Add an example GTK based GUI that uses the shared memory interface

2006-07-16 Thread Anthony Liguori
To run from the subdirectory, first do a make and then run: ./gtk-qemu -qemu ../i386-softmmu/qemu Regards, Anthony Liguori # HG changeset patch # User [EMAIL PROTECTED] # Node ID 1f7d5a9d262388eb7ca22a0869f0bdddb104a0bd # Parent 161ce66608016b77bb1889ce5bd046b26e942476 Add a sample GUI that u

[Qemu-devel] [PATCH 3/4] Improve character device read performance

2006-07-16 Thread Anthony Liguori
Regards, Anthony Liguori # HG changeset patch # User [EMAIL PROTECTED] # Node ID 32d5f77cf5e8c5a15b38b1fa86f588f374ebd3ad # Parent 0e52f303222037247747558d43d72b5b89817828 Sometimes partial reads occur even though there's still data to be read. This patch makes sure that we read all the data th

[Qemu-devel] [PATCH 2/4] Fix an overflow in term_puts

2006-07-16 Thread Anthony Liguori
Regards, Anthony Liguori # HG changeset patch # User [EMAIL PROTECTED] # Node ID 1cc1aeb53497fcc70843d8fb102da18f1af7e40e # Parent 0b4c6f94ee520884063f11f4631185368998cf9c Fix potential overflow in term_puts() diff -r 0b4c6f94ee52 -r 1cc1aeb53497 monitor.c --- a/monitor.c Sun Jul 16 16:25:28 20

[Qemu-devel] [PATCH 1/1] Add shared memory interface to QEMU

2006-07-16 Thread Anthony Liguori
This is actually adds the shared memory interface to QEMU. Regards, Anthony Liguori # HG changeset patch # User [EMAIL PROTECTED] # Node ID 0b4c6f94ee520884063f11f4631185368998cf9c # Parent b9f2ce1d04dc160035f2a8c44fa400912b8a01fd Add shared memory interface for external GUIs. The protocol is

[Qemu-devel] [PATCH 0/4] Support external GUIs

2006-07-16 Thread Anthony Liguori
The following set of patches implement support for building efficient external GUIs for QEMU. The current methods of writing an external GUI include trying to use SDL_WINDOWID, VNC, or forking QEMU. SDL_WINDOWID is problematic because keyboard/mouse events do not get transmitted properly. O

Re: [Qemu-devel] Monitor

2006-07-16 Thread NyOS
On Sat, 15 Jul 2006 23:51:39 +0200, Michael Fisher <[EMAIL PROTECTED]> wrote: 1. Can the commands (i.e. sendkeys, savevm, loadvm) be initiated from within the guest OS? If so, can you give me an example? Of course, by its nature, not. A good emulator cannot allow that. However, - if you confi