diff options
author | Sverker Eriksson <[email protected]> | 2016-04-01 15:38:16 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-05-04 19:53:37 +0200 |
commit | 9627711cc39fd311a573a172e6d0e8a6b55dbd17 (patch) | |
tree | 639ae3441ca188987876b2cdc863690d4718eacf /erts/emulator/hipe | |
parent | 5cb62b003d082c5a32ef5b12a89d872a317fd05f (diff) | |
download | otp-9627711cc39fd311a573a172e6d0e8a6b55dbd17.tar.gz otp-9627711cc39fd311a573a172e6d0e8a6b55dbd17.tar.bz2 otp-9627711cc39fd311a573a172e6d0e8a6b55dbd17.zip |
erts: Add Sender in 'receive' trace matchspec
All 'EXIT' and monitor messages are sent from 'system'
Timeouts are "sent" from 'clock_service'
Diffstat (limited to 'erts/emulator/hipe')
-rw-r--r-- | erts/emulator/hipe/hipe_native_bif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_native_bif.c b/erts/emulator/hipe/hipe_native_bif.c index d8076a3e02..9c03b3811c 100644 --- a/erts/emulator/hipe/hipe_native_bif.c +++ b/erts/emulator/hipe/hipe_native_bif.c @@ -601,7 +601,7 @@ void hipe_clear_timeout(Process *c_p) } #endif if (IS_TRACED_FL(c_p, F_TRACE_RECEIVE)) { - trace_receive(c_p, c_p, am_timeout, NULL); + trace_receive(c_p, am_clock_service, am_timeout, NULL); } c_p->flags &= ~F_TIMO; JOIN_MESSAGE(c_p); |