diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-06-05 14:19:37 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-06-06 11:27:05 +0200 |
commit | d1174f13e78e2f43f7ae33d59b62b0b94468c8db (patch) | |
tree | ffa99b94ab034f8b0169bdbed0223969bd0d43d0 /cmd.h | |
parent | c2cdf5c5892165cbe7d3567bff5930521bc52669 (diff) |
qemu-io: Move command_loop() and friends
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'cmd.h')
-rw-r--r-- | cmd.h | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -39,18 +39,11 @@ typedef struct cmdinfo { helpfunc_t help; } cmdinfo_t; -typedef int (*checkfunc_t)(BlockDriverState *bs, const cmdinfo_t *ci); - void qemuio_add_command(const cmdinfo_t *ci); -void add_user_command(char *optarg); -void add_check_command(checkfunc_t cf); -void command_loop(void); int qemuio_command_usage(const cmdinfo_t *ci); /* from input.h */ -char *fetchline(void); - void cvtstr(double value, char *str, size_t sz); struct timeval tsub(struct timeval t1, struct timeval t2); @@ -64,8 +57,6 @@ enum { void timestr(struct timeval *tv, char *str, size_t sz, int flags); -extern char *progname; - bool qemuio_command(const char *cmd); #endif /* __COMMAND_H__ */ |