Re: [Qemu-devel] [PATCH] qmp-shell: add persistent command history

2017-03-02 Thread Kashyap Chamarthy
On Wed, Mar 01, 2017 at 02:44:33PM -0500, John Snow wrote: > Use the existing readline history function we are utilizing > to provide persistent command history across instances of qmp-shell. Thanks for adding it to 'qmp-shell' this is useful. I normally use the READLINE functionality using 'qmp_

Re: [Qemu-devel] [PATCH] qmp-shell: add persistent command history

2017-03-02 Thread Nir Soffer
On Thu, Mar 2, 2017 at 12:19 AM, John Snow wrote: > > > On 03/01/2017 05:01 PM, Nir Soffer wrote: >> On Wed, Mar 1, 2017 at 9:44 PM, John Snow wrote: >>> >>> Use the existing readline history function we are utilizing >>> to provide persistent command history across instances of qmp-shell. >>> >>

Re: [Qemu-devel] [PATCH] qmp-shell: add persistent command history

2017-03-01 Thread John Snow
On 03/01/2017 05:01 PM, Nir Soffer wrote: > On Wed, Mar 1, 2017 at 9:44 PM, John Snow wrote: >> >> Use the existing readline history function we are utilizing >> to provide persistent command history across instances of qmp-shell. >> >> This assists entering debug commands across sessions that m

Re: [Qemu-devel] [PATCH] qmp-shell: add persistent command history

2017-03-01 Thread Nir Soffer
On Wed, Mar 1, 2017 at 9:44 PM, John Snow wrote: > > Use the existing readline history function we are utilizing > to provide persistent command history across instances of qmp-shell. > > This assists entering debug commands across sessions that may be > interrupted by QEMU sessions terminating, w

[Qemu-devel] [PATCH] qmp-shell: add persistent command history

2017-03-01 Thread John Snow
Use the existing readline history function we are utilizing to provide persistent command history across instances of qmp-shell. This assists entering debug commands across sessions that may be interrupted by QEMU sessions terminating, where the qmp-shell has to be relaunched. Signed-off-by: John