Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[simix] add intrusive_ptr for mailbox receiver.
[simgrid.git] / src / simix / smx_network_private.h
1 /* Copyright (c) 2007-2010, 2012-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SIMIX_NETWORK_PRIVATE_H
8 #define _SIMIX_NETWORK_PRIVATE_H
9
10 #include <deque>
11 #include <xbt/base.h>
12 #include <boost/intrusive_ptr.hpp>
13
14 #include "simgrid/simix.h"
15 #include "popping_private.h"
16
17 /** @brief Rendez-vous point datatype */
18 typedef struct s_smx_mailbox {
19   char *name;
20   std::deque<smx_synchro_t> *comm_queue;
21   boost::intrusive_ptr<simgrid::simix::Process> permanent_receiver; //process which the mailbox is attached to
22   std::deque<smx_synchro_t> *done_comm_queue;//messages already received in the permanent receive mode
23 } s_smx_mailbox_t;
24
25 XBT_PRIVATE void SIMIX_mailbox_exit(void);
26
27 XBT_PRIVATE smx_mailbox_t SIMIX_mbox_create(const char *name);
28 XBT_PRIVATE smx_mailbox_t SIMIX_mbox_get_by_name(const char *name);
29 XBT_PRIVATE void SIMIX_mbox_remove(smx_mailbox_t mbox, smx_synchro_t comm);
30
31 XBT_PRIVATE void SIMIX_mbox_set_receiver(smx_mailbox_t mbox, smx_process_t proc);
32 XBT_PRIVATE smx_synchro_t SIMIX_comm_irecv(smx_process_t dst_proc, smx_mailbox_t mbox,
33                               void *dst_buff, size_t *dst_buff_size,
34                               int (*match_fun)(void *, void *, smx_synchro_t),
35                               void (*copy_data_fun)(smx_synchro_t, void*, size_t),
36                               void *data, double rate);
37 XBT_PRIVATE smx_synchro_t SIMIX_comm_iprobe(smx_process_t dst_proc, smx_mailbox_t mbox, int type, int src,
38                               int tag, int (*match_fun)(void *, void *, smx_synchro_t), void *data);
39
40 #endif