diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-03-02 16:46:04 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-29 18:31:34 +0200 |
commit | b36c6d949916e1d7b0f6bee17004c012e6a36112 (patch) | |
tree | 4303ddf553e5b4742fa850e409f0b71e9437e7ac /lib/runtime_tools/c_src/dyntrace_lttng.h | |
parent | 8b9b4e8bffe087752463287457330803e69a1c81 (diff) | |
download | otp-b36c6d949916e1d7b0f6bee17004c012e6a36112.tar.gz otp-b36c6d949916e1d7b0f6bee17004c012e6a36112.tar.bz2 otp-b36c6d949916e1d7b0f6bee17004c012e6a36112.zip |
runtime_tools: Add lttng 'running' tracing
Diffstat (limited to 'lib/runtime_tools/c_src/dyntrace_lttng.h')
-rw-r--r-- | lib/runtime_tools/c_src/dyntrace_lttng.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/runtime_tools/c_src/dyntrace_lttng.h b/lib/runtime_tools/c_src/dyntrace_lttng.h index c2fd003d48..1271f7516a 100644 --- a/lib/runtime_tools/c_src/dyntrace_lttng.h +++ b/lib/runtime_tools/c_src/dyntrace_lttng.h @@ -130,6 +130,23 @@ TRACEPOINT_EVENT( ) ) +/* Scheduled */ + +TRACEPOINT_EVENT( + com_ericsson_dyntrace, + process_scheduled, + TP_ARGS( + char*, p, + char*, mfa, + char*, type + ), + TP_FIELDS( + ctf_string(pid, p) + ctf_string(entry, mfa) + ctf_string(type, type) + ) +) + /* Process Memory */ TRACEPOINT_EVENT( |