X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7f4f03348bd07609e258eb3b545bdafc2c881847..3ef6ce6e499e5400eea06facd1896d1b5e94fde9:/src/msg/msg_mailbox.cpp?ds=sidebyside diff --git a/src/msg/msg_mailbox.cpp b/src/msg/msg_mailbox.cpp index 13cfe2e41f..9f9455c8cf 100644 --- a/src/msg/msg_mailbox.cpp +++ b/src/msg/msg_mailbox.cpp @@ -242,16 +242,3 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, msg_task_t task, MSG_RETURN(ret); } -#ifdef MSG_USE_DEPRECATED -msg_mailbox_t MSG_mailbox_get_by_channel(msg_host_t host, - m_channel_t channel) -{ - XBT_WARN("DEPRECATED! Now use MSG_mailbox_get_by_alias"); - xbt_assert((host != NULL), "Invalid host"); - xbt_assert((channel >= 0) - && (channel < msg_global->max_channel), "Invalid channel %d", - channel); - - return MSG_host_priv(host)->mailboxes[(size_t) channel]; -} -#endif