Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add some peer traces.
[simgrid.git] / examples / gras / spawn / spawn.h
1 /* spawn - demo of the gras_actor_spawn function                            */
2
3 /* Copyright (c) 2007, 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 SPAWN_COMMON_H
10 #define SPAWN_COMMON_H
11
12 #include "gras.h"
13
14 /* register messages which may be sent (common to client and server) */
15 void spawn_register_messages(void);
16
17 /* Function prototypes */
18 int father(int argc, char *argv[]);
19 int child(int argc, char *argv[]);
20
21 #endif