summaryrefslogtreecommitdiffstats
path: root/src/run.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2009-09-15 18:54:43 +0200
committerJiri Olsa <jolsa@redhat.com>2009-09-15 18:54:43 +0200
commit5e542623f3dafab636adbe5690a8a4716a96f956 (patch)
tree472f827abf2e6670465eed719fc34665a2f60ef2 /src/run.c
parent5a9bd15d138627561b4df3bc639f8939167709d1 (diff)
downloadlatrace-5e542623f3dafab636adbe5690a8a4716a96f956.tar.gz
latrace-5e542623f3dafab636adbe5690a8a4716a96f956.tar.xz
latrace-5e542623f3dafab636adbe5690a8a4716a96f956.zip
added initial support for timestamp display
Diffstat (limited to 'src/run.c')
-rw-r--r--src/run.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/run.c b/src/run.c
index 23eb983..d328964 100644
--- a/src/run.c
+++ b/src/run.c
@@ -133,7 +133,7 @@ static int process_fifo(struct lt_config_app *cfg, struct lt_thread *t)
if (FIFO_MSG_TYPE_ENTRY == msym->h.type) {
cfg->sh.indent_depth++;
- lt_out_entry(&cfg->sh,
+ lt_out_entry(&cfg->sh, NULL,
msym->data + msym->sym,
msym->data + msym->lib,
msym->data + msym->arg,
@@ -141,7 +141,7 @@ static int process_fifo(struct lt_config_app *cfg, struct lt_thread *t)
} else if (FIFO_MSG_TYPE_EXIT == msym->h.type) {
- lt_out_exit(&cfg->sh,
+ lt_out_exit(&cfg->sh, NULL,
msym->data + msym->sym,
msym->data + msym->lib,
msym->data + msym->arg,