Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill an unused function
authorMartin Quinson <martin.quinson@loria.fr>
Thu, 21 Apr 2016 15:30:57 +0000 (17:30 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Thu, 21 Apr 2016 15:30:57 +0000 (17:30 +0200)
include/simgrid/simix.h
src/simix/smx_network.cpp

index 7c77c0b..508348c 100644 (file)
@@ -373,8 +373,6 @@ XBT_PUBLIC(smx_synchro_t) simcall_mbox_get_head(smx_mailbox_t mbox);
 XBT_PUBLIC(smx_process_t) simcall_mbox_get_receiver(smx_mailbox_t mbox);
 XBT_PUBLIC(void) simcall_mbox_set_receiver(smx_mailbox_t mbox , smx_process_t process);
 
 XBT_PUBLIC(smx_process_t) simcall_mbox_get_receiver(smx_mailbox_t mbox);
 XBT_PUBLIC(void) simcall_mbox_set_receiver(smx_mailbox_t mbox , smx_process_t process);
 
-XBT_PUBLIC(xbt_dict_t) SIMIX_get_mailboxes(void);
-
 /***** Communication simcalls *****/
 
 XBT_PUBLIC(void) simcall_comm_send(smx_process_t sender, smx_mailbox_t mbox, double task_size,
 /***** Communication simcalls *****/
 
 XBT_PUBLIC(void) simcall_comm_send(smx_process_t sender, smx_mailbox_t mbox, double task_size,
index b3d4c06..dd209ff 100644 (file)
@@ -80,11 +80,6 @@ void SIMIX_mbox_free(void *data)
   xbt_free(mbox);
 }
 
   xbt_free(mbox);
 }
 
-xbt_dict_t SIMIX_get_mailboxes()
-{
-  return mailboxes;
-}
-
 smx_mailbox_t SIMIX_mbox_get_by_name(const char *name)
 {
   return (smx_mailbox_t) xbt_dict_get_or_null(mailboxes, name);
 smx_mailbox_t SIMIX_mbox_get_by_name(const char *name)
 {
   return (smx_mailbox_t) xbt_dict_get_or_null(mailboxes, name);