aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools/c_src/dyntrace_lttng.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/runtime_tools/c_src/dyntrace_lttng.h')
-rw-r--r--lib/runtime_tools/c_src/dyntrace_lttng.h32
1 files changed, 24 insertions, 8 deletions
diff --git a/lib/runtime_tools/c_src/dyntrace_lttng.h b/lib/runtime_tools/c_src/dyntrace_lttng.h
index 265af5729f..3044cf0948 100644
--- a/lib/runtime_tools/c_src/dyntrace_lttng.h
+++ b/lib/runtime_tools/c_src/dyntrace_lttng.h
@@ -277,11 +277,15 @@ TRACEPOINT_EVENT(
gc_minor_start,
TP_ARGS(
char*, p,
- int, need
+ unsigned long, need,
+ unsigned long, nh,
+ unsigned long, oh
),
TP_FIELDS(
ctf_string(pid, p)
- ctf_integer(int, need, need)
+ ctf_integer(unsigned long, need, need)
+ ctf_integer(unsigned long, heap, nh)
+ ctf_integer(unsigned long, old_heap, oh)
)
)
@@ -290,11 +294,15 @@ TRACEPOINT_EVENT(
gc_minor_end,
TP_ARGS(
char*, p,
- int, reclaimed
+ unsigned long, reclaimed,
+ unsigned long, nh,
+ unsigned long, oh
),
TP_FIELDS(
ctf_string(pid, p)
- ctf_integer(int, reclaimed, reclaimed)
+ ctf_integer(unsigned long, reclaimed, reclaimed)
+ ctf_integer(unsigned long, heap, nh)
+ ctf_integer(unsigned long, old_heap, oh)
)
)
@@ -303,11 +311,15 @@ TRACEPOINT_EVENT(
gc_major_start,
TP_ARGS(
char*, p,
- int, need
+ unsigned long, need,
+ unsigned long, nh,
+ unsigned long, oh
),
TP_FIELDS(
ctf_string(pid, p)
- ctf_integer(int, need, need)
+ ctf_integer(unsigned long, need, need)
+ ctf_integer(unsigned long, heap, nh)
+ ctf_integer(unsigned long, old_heap, oh)
)
)
@@ -316,11 +328,15 @@ TRACEPOINT_EVENT(
gc_major_end,
TP_ARGS(
char*, p,
- int, reclaimed
+ unsigned long, reclaimed,
+ unsigned long, nh,
+ unsigned long, oh
),
TP_FIELDS(
ctf_string(pid, p)
- ctf_integer(int, reclaimed, reclaimed)
+ ctf_integer(unsigned long, reclaimed, reclaimed)
+ ctf_integer(unsigned long, heap, nh)
+ ctf_integer(unsigned long, old_heap, oh)
)
)