diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-03-07 16:32:25 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-29 18:31:35 +0200 |
commit | 2580fd9edf0ebb293cf472740102b57d82d2f287 (patch) | |
tree | b522a2e22804de44c64ec18b88f3edb58aec1381 /lib/runtime_tools/c_src/dyntrace_lttng.h | |
parent | 6f89f183317c930fe1199ad3320825b02bb861da (diff) | |
download | otp-2580fd9edf0ebb293cf472740102b57d82d2f287.tar.gz otp-2580fd9edf0ebb293cf472740102b57d82d2f287.tar.bz2 otp-2580fd9edf0ebb293cf472740102b57d82d2f287.zip |
runtime_tools: Update lttng garbage collection trace
Diffstat (limited to 'lib/runtime_tools/c_src/dyntrace_lttng.h')
-rw-r--r-- | lib/runtime_tools/c_src/dyntrace_lttng.h | 32 |
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) ) ) |