Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused variables.
[simgrid.git] / include / gras.h
1 /* gras.h - Public interface to the GRAS                                    */
2
3 /* Copyright (c) 2004, 2005, 2006, 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 GRAS_H
10 #define GRAS_H
11
12 #include <xbt.h>                /* our toolbox */
13 #include <xbt/ex.h>             /* There's a whole bunch of exception handling in GRAS */
14
15 #include <gras/process.h>
16 #include <gras/module.h>
17 #include <gras/virtu.h>
18 #include <gras/emul.h>
19
20 #include <gras/transport.h>
21 #include <gras/datadesc.h>
22 #include <gras/messages.h>
23 #include <gras/timer.h>
24
25 XBT_PUBLIC(void) gras_init(int *argc, char **argv);
26 XBT_PUBLIC(void) gras_exit(void);
27
28 #endif                          /* GRAS_H */