summaryrefslogtreecommitdiffstats
path: root/src/htm.c
diff options
context:
space:
mode:
authorCyril Bur <cyrilbur@gmail.com>2018-02-09 15:38:46 +1100
committerAlistair Popple <alistair@popple.id.au>2018-02-16 16:22:23 +1100
commit8a3cdf341a9ca41479e377f4d6c09f74b53ce381 (patch)
tree5a15b3fd6c8982f85e4820425ceaac84311c1043 /src/htm.c
parent08cc9da08ba9eb976a8b8f5d8772369d174bc4db (diff)
downloadpdbg-8a3cdf341a9ca41479e377f4d6c09f74b53ce381.tar.gz
pdbg-8a3cdf341a9ca41479e377f4d6c09f74b53ce381.zip
main: Use new command handling for HTM
Signed-off-by: Cyril Bur <cyrilbur@gmail.com>
Diffstat (limited to 'src/htm.c')
-rw-r--r--src/htm.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/htm.c b/src/htm.c
index 36e138f..b03aca0 100644
--- a/src/htm.c
+++ b/src/htm.c
@@ -45,7 +45,7 @@ static char *get_htm_dump_filename(void)
return filename;
}
-int run_htm_start(void)
+int run_htm_start(int optind, int argc, char *argv[])
{
struct pdbg_target *target;
int rc = 0;
@@ -64,7 +64,7 @@ int run_htm_start(void)
return rc;
}
-int run_htm_stop(void)
+int run_htm_stop(int optind, int argc, char *argv[])
{
struct pdbg_target *target;
int rc = 0;
@@ -83,7 +83,7 @@ int run_htm_stop(void)
return rc;
}
-int run_htm_status(void)
+int run_htm_status(int optind, int argc, char *argv[])
{
struct pdbg_target *target;
int rc = 0;
@@ -103,7 +103,7 @@ int run_htm_status(void)
return rc;
}
-int run_htm_reset(void)
+int run_htm_reset(int optind, int argc, char *argv[])
{
uint64_t old_base = 0, base, size;
struct pdbg_target *target;
@@ -131,7 +131,7 @@ int run_htm_reset(void)
return rc;
}
-int run_htm_dump(void)
+int run_htm_dump(int optind, int argc, char *argv[])
{
struct pdbg_target *target;
char *filename;
@@ -158,7 +158,7 @@ int run_htm_dump(void)
return rc;
}
-int run_htm_trace(void)
+int run_htm_trace(int optind, int argc, char *argv[])
{
uint64_t old_base = 0, base, size;
struct pdbg_target *target;
@@ -201,7 +201,7 @@ int run_htm_trace(void)
return rc;
}
-int run_htm_analyse(void)
+int run_htm_analyse(int optind, int argc, char *argv[])
{
struct pdbg_target *target;
char *filename;
OpenPOWER on IntegriCloud