Ting Wang writes:
> Make "info iothreads" available on the HMP monitor.
>
> For example, the results are as follows when executing qemu
> command with "-object iothread,id=iothread-1 -object
> iothread,id=iothread-2".
> (qemu) info iothreads
> iothread-1: thread_id=123
> iothread-2: thread_id=45
On 2015-7-31 0:05, Luiz Capitulino wrote:
> On Fri, 26 Jun 2015 16:07:13 +0800
> Ting Wang wrote:
>
>> Make "info iothreads" available on the HMP monitor.
>>
>> For example, the results are as follows when executing qemu
>> command with "-object iothread,id=iothread-1 -object
>> iothread,id=ioth
On Fri, Jul 31, 2015 at 1:07 AM, Paolo Bonzini wrote:
>
>
> On 30/07/2015 18:51, Amos Jianjun Kong wrote:
>>> > +void hmp_info_iothreads(Monitor *mon, const QDict *qdict)
>>> > +{
>>> > +IOThreadInfoList *info_list = qmp_query_iothreads(NULL);
>>> > +IOThreadInfoList *info;
>>> > +
>>> > +
On 30/07/2015 18:51, Amos Jianjun Kong wrote:
>> > +void hmp_info_iothreads(Monitor *mon, const QDict *qdict)
>> > +{
>> > +IOThreadInfoList *info_list = qmp_query_iothreads(NULL);
>> > +IOThreadInfoList *info;
>> > +
>> > +for (info = info_list; info; info = info->next) {
>> > +
On Fri, Jun 26, 2015 at 4:07 PM, Ting Wang wrote:
> Make "info iothreads" available on the HMP monitor.
>
> For example, the results are as follows when executing qemu
> command with "-object iothread,id=iothread-1 -object
> iothread,id=iothread-2".
> (qemu) info iothreads
> iothread-1: thread_id=
On Fri, 26 Jun 2015 16:07:13 +0800
Ting Wang wrote:
> Make "info iothreads" available on the HMP monitor.
>
> For example, the results are as follows when executing qemu
> command with "-object iothread,id=iothread-1 -object
> iothread,id=iothread-2".
> (qemu) info iothreads
> iothread-1: threa
On 2015-7-3 20:43, Markus Armbruster wrote:
> Copying the HMP maintainer Luiz. You can feed your patch to
> scripts/get_maintainer to find people to cc yourself.
OK, thanks.
Ting
>
> Ting Wang writes:
>
>> Make "info iothreads" available on the HMP monitor.
>>
>> For example, the results are as
Copying the HMP maintainer Luiz. You can feed your patch to
scripts/get_maintainer to find people to cc yourself.
Ting Wang writes:
> Make "info iothreads" available on the HMP monitor.
>
> For example, the results are as follows when executing qemu
> command with "-object iothread,id=iothread-
Make "info iothreads" available on the HMP monitor.
For example, the results are as follows when executing qemu
command with "-object iothread,id=iothread-1 -object
iothread,id=iothread-2".
(qemu) info iothreads
iothread-1: thread_id=123
iothread-2: thread_id=456
Signed-off-by: Ting Wang
---
v5