Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not display backtrace capturing stuff in the displayed backtrace (plus, be eclipse...
[simgrid.git] / include / gras.h
1 /* $Id$ */
2
3 /* gras.h - Public interface to the GRAS                                    */
4
5 /* Copyright (c) 2003, 2004 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 GRAS_H
11 #define GRAS_H
12
13 #include <xbt.h> /* our toolbox */
14 #include <xbt/ex.h> /* There's a whole bunch of exception handling in GRAS */
15
16 #include <gras/process.h>
17 #include <gras/module.h>
18 #include <gras/virtu.h>
19 #include <gras/emul.h>
20
21 #include <gras/transport.h>
22 #include <gras/datadesc.h>
23 #include <gras/messages.h>
24 #include <gras/timer.h>
25
26 XBT_PUBLIC(void) gras_init(int *argc, char **argv);
27 XBT_PUBLIC(void) gras_exit(void);
28
29 #endif /* GRAS_H */