diff options
author | Rickard Green <[email protected]> | 2016-05-25 16:15:36 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2016-05-25 16:15:53 +0200 |
commit | 36f98375d57daaba3fec42bb91482cdac9ef4cc9 (patch) | |
tree | 66cd0a295ac70b6b94ec84bb11d8b9f1165e039a /erts/emulator/beam/bif.c | |
parent | c126081ca43145412f72a1b5cbae6919c22de28e (diff) | |
download | otp-36f98375d57daaba3fec42bb91482cdac9ef4cc9.tar.gz otp-36f98375d57daaba3fec42bb91482cdac9ef4cc9.tar.bz2 otp-36f98375d57daaba3fec42bb91482cdac9ef4cc9.zip |
Remove the 'message_queue_data' option 'mixed'
Diffstat (limited to 'erts/emulator/beam/bif.c')
-rw-r--r-- | erts/emulator/beam/bif.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/erts/emulator/beam/bif.c b/erts/emulator/beam/bif.c index 2a3bd4afe5..e77da526fd 100644 --- a/erts/emulator/beam/bif.c +++ b/erts/emulator/beam/bif.c @@ -917,9 +917,6 @@ BIF_RETTYPE spawn_opt_1(BIF_ALIST_1) goto error; } else if (arg == am_message_queue_data) { switch (val) { - case am_mixed: - so.flags &= ~(SPO_OFF_HEAP_MSGQ|SPO_ON_HEAP_MSGQ); - break; case am_on_heap: so.flags &= ~SPO_OFF_HEAP_MSGQ; so.flags |= SPO_ON_HEAP_MSGQ; |