All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/5] qemu-io: readline command completion
@ 2013-11-14 10:54 Stefan Hajnoczi
  2013-11-14 10:54 ` [Qemu-devel] [PATCH 1/5] readline: decouple readline from the monitor Stefan Hajnoczi
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Stefan Hajnoczi @ 2013-11-14 10:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: Kevin Wolf, Stefan Hajnoczi, Luiz Capitulino

This series decouples readline.c from the QEMU monitor and then reuses it in
qemu-io.  This adds history and command completion to the qemu-io interactive
prompt.

Stefan Hajnoczi (5):
  readline: decouple readline from the monitor
  readline: move readline to a generic location
  osdep: add qemu_set_tty_echo()
  qemu-io: use readline.c
  qemu-io: add command completion

 Makefile.objs              |   1 -
 hmp.c                      |   6 +-
 include/monitor/monitor.h  |   2 +-
 include/monitor/readline.h |  56 -----
 include/qemu-io.h          |   3 +
 include/qemu/osdep.h       |   2 +
 include/qemu/readline.h    |  62 ++++++
 monitor.c                  |  41 +++-
 qemu-io-cmds.c             |  15 ++
 qemu-io.c                  | 109 +++++-----
 readline.c                 | 493 --------------------------------------------
 util/Makefile.objs         |   1 +
 util/oslib-posix.c         |  18 ++
 util/oslib-win32.c         |  19 ++
 util/readline.c            | 495 +++++++++++++++++++++++++++++++++++++++++++++
 15 files changed, 716 insertions(+), 607 deletions(-)
 delete mode 100644 include/monitor/readline.h
 create mode 100644 include/qemu/readline.h
 delete mode 100644 readline.c
 create mode 100644 util/readline.c

-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-12-02 14:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-14 10:54 [Qemu-devel] [PATCH 0/5] qemu-io: readline command completion Stefan Hajnoczi
2013-11-14 10:54 ` [Qemu-devel] [PATCH 1/5] readline: decouple readline from the monitor Stefan Hajnoczi
2013-11-14 10:54 ` [Qemu-devel] [PATCH 2/5] readline: move readline to a generic location Stefan Hajnoczi
2013-11-14 10:54 ` [Qemu-devel] [PATCH 3/5] osdep: add qemu_set_tty_echo() Stefan Hajnoczi
2013-11-29 10:04   ` Kevin Wolf
2013-11-29 10:13     ` Kevin Wolf
2013-12-02 14:23       ` Stefan Hajnoczi
2013-11-14 10:54 ` [Qemu-devel] [PATCH 4/5] qemu-io: use readline.c Stefan Hajnoczi
2013-11-14 10:54 ` [Qemu-devel] [PATCH 5/5] qemu-io: add command completion Stefan Hajnoczi
2013-11-28  1:28 ` [Qemu-devel] [PATCH 0/5] qemu-io: readline " Luiz Capitulino

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.