Logo AND Algorithmique Numérique Distribuée

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