Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace sprintf by snprintf.
[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
13 #include "simgrid/simix.h"
14 #include "popping_private.h"
15
16 /** @brief Rendez-vous point datatype */
17 typedef struct s_smx_mailbox {
18   char *name;
19   std::deque<smx_synchro_t> *comm_queue;
20   smx_process_t permanent_receiver; //process which the mailbox is attached to
21   std::deque<smx_synchro_t> *done_comm_queue;//messages already received in the permanent receive mode
22 } s_smx_mailbox_t;
23
24 XBT_PRIVATE void SIMIX_mailbox_exit(void);
25
26 XBT_PRIVATE smx_mailbox_t SIMIX_mbox_create(const char *name);
27 XBT_PRIVATE smx_mailbox_t SIMIX_mbox_get_by_name(const char *name);
28 XBT_PRIVATE void SIMIX_mbox_remove(smx_mailbox_t mbox, smx_synchro_t comm);
29
30 XBT_PRIVATE void SIMIX_mbox_set_receiver(smx_mailbox_t mbox, smx_process_t proc);
31 XBT_PRIVATE smx_synchro_t SIMIX_comm_irecv(smx_process_t dst_proc, smx_mailbox_t mbox,
32                               void *dst_buff, size_t *dst_buff_size,
33                               int (*match_fun)(void *, void *, smx_synchro_t),
34                               void (*copy_data_fun)(smx_synchro_t, void*, size_t),
35                               void *data, double rate);
36 XBT_PRIVATE smx_synchro_t SIMIX_comm_iprobe(smx_process_t dst_proc, smx_mailbox_t mbox, int type, int src,
37                               int tag, int (*match_fun)(void *, void *, smx_synchro_t), void *data);
38
39 #endif
40