Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Propagate the interface cleanup from last week in datadesc, ie remove a
[simgrid.git] / include / gras.h
1 /* $Id$ */
2
3 /* gras.h - Public interface to the GRAS                                    */
4
5 /* Authors: Martin Quinson                                                  */
6 /* Copyright (C) 2003 the OURAGAN project.                                  */
7
8 /* This program is free software; you can redistribute it and/or modify it
9    under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef GRAS_H
12 #define GRAS_H
13
14 #define max(a, b) (((a) > (b))?(a):(b))
15 #define min(a, b) (((a) < (b))?(a):(b))
16
17 #define TRUE  1
18 #define FALSE 0
19
20 #define GRAS_MAX_CHANNEL 10 /* FIXME: killme */
21
22 #include <gras/error.h>
23 #include <gras/log.h>
24
25 #include <gras/module.h>
26
27 #include <gras/dynar.h>
28 #include <gras/dict.h>
29 #include <gras/set.h>
30
31 #include <gras/config.h>
32
33 #include <gras/core.h> /* FIXME: killme */
34 #include <gras/process.h>
35 #include <gras/virtu.h>
36 #include <gras/cond.h>
37
38 #include <gras/transport.h>
39 #include <gras/datadesc.h>
40 #include <gras/messages.h>
41
42 #include <gras/modules/base.h>
43 #include <gras/modules/bandwidth.h>
44
45 #endif /* GRAS_H */