Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / include / xbt / synchro.h
1 /* xbt/synchro.h -- Synchronization tools                                   */
2 /* Usable in simulator, (or in real life when mixing with GRAS)             */
3
4 /* Copyright (c) 2007-2009 Da SimGrid Team. 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 /* synchro_core.h is splited away since it is used by dynar.h, and we use dynar here */
10
11 #ifndef SYNCHRO_H_
12 #define SYNCHRO_H_
13 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
14 #include "xbt/dynar.h"
15 SG_BEGIN_DECL()
16
17 XBT_PUBLIC(void) xbt_dynar_dopar(xbt_dynar_t datas, void_f_int_pvoid_t function);
18
19 SG_END_DECL()
20
21 #endif /* SYNCHRO_H_ */