summaryrefslogtreecommitdiffstats
path: root/src/htm.c
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2018-06-19 15:25:34 +1000
committerAlistair Popple <alistair@popple.id.au>2018-06-25 15:11:03 +1000
commit81d2d2fa8d8a9cd1b51c39ba74e9426064263f34 (patch)
tree9e4cff5445df9616e96a9ca83e216a09b9a06933 /src/htm.c
parent6ac2a7b441a0aa5ac4d6123c16a18338631a8a01 (diff)
downloadpdbg-81d2d2fa8d8a9cd1b51c39ba74e9426064263f34.tar.gz
pdbg-81d2d2fa8d8a9cd1b51c39ba74e9426064263f34.zip
htm: Change buffer wrappings semantics
"htm record" is set to non-wrapping mode "htm start" is in wrapping mode since it's assumed "htm stop" will stop it. Signed-off-by: Michael Neuling <mikey@neuling.org>
Diffstat (limited to 'src/htm.c')
-rw-r--r--src/htm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htm.c b/src/htm.c
index eff46a6..02e55c1 100644
--- a/src/htm.c
+++ b/src/htm.c
@@ -86,7 +86,7 @@ static int run_start(enum htm_type type)
if (target_is_disabled(target))
continue;
- printf("Starting HTM@");
+ printf("Starting with buffer wrapping HTM@");
print_htm_address(type, target);
if (htm_start(target) != 1) {
printf("Couldn't start HTM@");
@@ -195,7 +195,7 @@ static int run_record(enum htm_type type)
return 0;
/* size = 0 will dump everything */
- printf("Recording HTM@");
+ printf("Recording till buffer wraps HTM@");
print_htm_address(type, target);
if (htm_record(target, filename) != 1) {
printf("Couldn't record HTM@");
OpenPOWER on IntegriCloud