diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-03-07 16:04:04 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-29 18:31:35 +0200 |
commit | 6f89f183317c930fe1199ad3320825b02bb861da (patch) | |
tree | 5d919324442bc87300cd6956dc17f8a6874232f0 /erts/emulator/beam/erl_trace.h | |
parent | f5fa3ac80d2f7fcd11ac3e702c29df5ef6c204db (diff) | |
download | otp-6f89f183317c930fe1199ad3320825b02bb861da.tar.gz otp-6f89f183317c930fe1199ad3320825b02bb861da.tar.bz2 otp-6f89f183317c930fe1199ad3320825b02bb861da.zip |
erts: Extend garbage collection trace
Replace 'gc_start' and 'gc_end' with
* 'gc_minor_start'
* 'gc_minor_end'
* 'gc_major_start'
* 'gc_major_end'
Diffstat (limited to 'erts/emulator/beam/erl_trace.h')
-rw-r--r-- | erts/emulator/beam/erl_trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_trace.h b/erts/emulator/beam/erl_trace.h index 177fd373a6..9a007e62ec 100644 --- a/erts/emulator/beam/erl_trace.h +++ b/erts/emulator/beam/erl_trace.h @@ -103,7 +103,7 @@ void trace_sched(Process*, ErtsProcLocks, Eterm); void trace_proc(Process*, ErtsProcLocks, Process*, Eterm, Eterm); void trace_proc_spawn(Process*, Eterm what, Eterm pid, Eterm mod, Eterm func, Eterm args); void save_calls(Process *p, Export *); -void trace_gc(Process *p, Eterm what); +void trace_gc(Process *p, Eterm what, Uint size); /* port tracing */ void trace_virtual_sched(Process*, ErtsProcLocks, Eterm); void trace_sched_ports(Port *pp, Eterm); |