Re: [Qemu-devel] [PATCH v1 0/3]: QMP: Human Monitor passthrough

2010-11-11 Thread Luiz Capitulino
On Thu, 11 Nov 2010 18:22:13 +0200 Avi Kivity wrote: > On 10/29/2010 04:28 PM, Luiz Capitulino wrote: > > Simple example: > > > > -> { "execute": "hmp_passthrough", "arguments": { "command-line": "print > > /i 10+25" } } > > <- { "return": "35\r\n" } > > > > Why are the names so cryptic? > >

Re: [Qemu-devel] [PATCH v1 0/3]: QMP: Human Monitor passthrough

2010-11-11 Thread Avi Kivity
On 10/29/2010 04:28 PM, Luiz Capitulino wrote: Simple example: -> { "execute": "hmp_passthrough", "arguments": { "command-line": "print /i 10+25" } } <- { "return": "35\r\n" } Why are the names so cryptic? -> { "execute": "human-monitor-command", ... } <- { "return": "42\r\n" } -- error c

[Qemu-devel] [PATCH v1 0/3]: QMP: Human Monitor passthrough

2010-10-29 Thread Luiz Capitulino
Simple example: -> { "execute": "hmp_passthrough", "arguments": { "command-line": "print /i 10+25" } } <- { "return": "35\r\n" } Please, check individual patches for details. Also note that this series depends on the script improvements one. Thanks.