~ubuntu-branches/ubuntu/raring/simgrid/raring

« back to all changes in this revision

Viewing changes to examples/msg/chainsend/common.h

  • Committer: Package Import Robot
  • Author(s): Martin Quinson
  • Date: 2013-01-31 00:24:51 UTC
  • mfrom: (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20130131002451-krejhf7w7h24lpsc
Tags: 3.9~rc1-1
* New upstream release: the "Grasgory" release. Major changes:
  - Gras was completely removed from this version.
  - Documentation reorganization to ease browsing it.
  - New default value for the TCP_gamma parameter: 4MiB

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */