diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-04-14 13:29:08 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-04-14 14:20:12 +0200 |
commit | 0a1e2b5e6c92cbea2d2e853facb8b4d6f058d541 (patch) | |
tree | d62cd3e13e58e701b8d664d39c757223c0e1b6e5 /erts/emulator/beam/bif.c | |
parent | 9015a160f677c19a6e3c7bac5d05298856f94108 (diff) | |
download | otp-0a1e2b5e6c92cbea2d2e853facb8b4d6f058d541.tar.gz otp-0a1e2b5e6c92cbea2d2e853facb8b4d6f058d541.tar.bz2 otp-0a1e2b5e6c92cbea2d2e853facb8b4d6f058d541.zip |
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 |