diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-04-16 12:28:21 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-04-16 12:28:21 +0200 |
commit | 82670b1f264f14d6dd2502efe459d9478826a788 (patch) | |
tree | 90a9656f686cfc9886f5801781b5aed0fed4454e /erts/emulator/beam/bif.c | |
parent | c46ae84ffd858c8fa8ddb3bfbfb3607276173fb4 (diff) | |
parent | c8a0eca92cdda27c3efdde261c9c32bd445a3794 (diff) | |
download | otp-82670b1f264f14d6dd2502efe459d9478826a788.tar.gz otp-82670b1f264f14d6dd2502efe459d9478826a788.tar.bz2 otp-82670b1f264f14d6dd2502efe459d9478826a788.zip |
Merge branch 'egil/refactor-message-queue-probes'
* egil/refactor-message-queue-probes:
erts: Refactor dtrace call probes
erts: Refactor erts_queue_message
Diffstat (limited to 'erts/emulator/beam/bif.c')
-rw-r--r-- | erts/emulator/beam/bif.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/erts/emulator/beam/bif.c b/erts/emulator/beam/bif.c index 022150da55..4f2958c664 100644 --- a/erts/emulator/beam/bif.c +++ b/erts/emulator/beam/bif.c @@ -610,11 +610,7 @@ erts_queue_monitor_message(Process *p, ref_copy = copy_struct(ref, ref_size, &hp, ohp); tup = TUPLE5(hp, am_DOWN, ref_copy, type, item_copy, reason_copy); - erts_queue_message(p, p_locksp, bp, tup, NIL -#ifdef USE_VM_PROBES - , NIL -#endif - ); + erts_queue_message(p, p_locksp, bp, tup, NIL); } static BIF_RETTYPE |