diff options
author | Rickard Green <[email protected]> | 2018-03-26 10:54:39 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2018-03-26 11:06:05 +0200 |
commit | 2d3437392c000f8d4846a57dd399f1e4e4be8b2f (patch) | |
tree | 6289d0c769b0a69e7dac6b72532340591a555226 /erts | |
parent | 83a289d4dff156f2c7203843a1437256545f5580 (diff) | |
download | otp-2d3437392c000f8d4846a57dd399f1e4e4be8b2f.tar.gz otp-2d3437392c000f8d4846a57dd399f1e4e4be8b2f.tar.bz2 otp-2d3437392c000f8d4846a57dd399f1e4e4be8b2f.zip |
Fix VM probes compilation
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/beam/erl_proc_sig_queue.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_proc_sig_queue.c b/erts/emulator/beam/erl_proc_sig_queue.c index b4759967a7..99d20e9242 100644 --- a/erts/emulator/beam/erl_proc_sig_queue.c +++ b/erts/emulator/beam/erl_proc_sig_queue.c @@ -40,6 +40,7 @@ #include "erl_gc.h" #include "bif.h" #include "erl_proc_sig_queue.h" +#include "dtrace-wrapper.h" #define ERTS_SIG_REDS_CNT_FACTOR 4 #define ERTS_PROC_SIG_TRACE_COUNT_LIMIT 200 @@ -751,13 +752,14 @@ send_gen_exit_signal(Process *c_p, Eterm from_tag, seq_trace_update_send(c_p); #ifdef USE_VM_PROBES + utag_sz = 0; + utag = NIL; if (c_p && token != NIL && (DT_UTAG_FLAGS(c_p) & DT_UTAG_SPREADING)) { utag_sz = size_object(DT_UTAG(c_p)); utag = DT_UTAG(c_p); } else if (token == am_have_dt_utag) { - utag_sz = 0; - utag = token = NIL; + token = NIL; } hsz += utag_sz; #endif |