Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add more checking to inputs of SMPI functions
[simgrid.git] / examples / gras / console / ping.h
1 /* ping - ping/pong demo of GRAS features                                   */
2
3 /* Copyright (c) 2006, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef PING_COMMON_H
10 #define PING_COMMON_H
11
12 #include "gras.h"
13
14 /* register messages which may be sent (common to client and server) */
15 void ping_register_messages(void);
16
17 /* Function prototypes */
18 int server(int argc, char *argv[]);
19 int client(int argc, char *argv[]);
20
21 #endif