Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
chainsend: change tesh to test with 8192 pieces
[simgrid.git] / examples / msg / chainsend / common.h
1 #ifndef KADEPLOY_COMMON_H
2 #define KADEPLOY_COMMON_H
3
4 #include "msg/msg.h"
5 #include "xbt/sysdep.h"
6
7 static XBT_INLINE void queue_pending_connection(msg_comm_t comm, xbt_dynar_t q)
8 {
9   xbt_dynar_push(q, &comm);
10 }
11
12 int process_pending_connections(xbt_dynar_t q);
13
14 #define MESSAGE_SIZE 1
15 #define HOSTNAME_LENGTH 20
16
17 #endif /* KADEPLOY_COMMON_H */