Logo AND Algorithmique Numérique Distribuée

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