Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cb7abd099d48ba911bfefec9cb31fa6b1a878726
[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, 2010. The SimGrid Team.
5  * 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 /* synchro_core.h is splited away since it is used by dynar.h, and we use dynar here */
11
12 #ifndef SYNCHRO_H_
13 #define SYNCHRO_H_
14 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
15 #include "xbt/dynar.h"
16 SG_BEGIN_DECL()
17
18 XBT_PUBLIC(void) xbt_dynar_dopar(xbt_dynar_t datas, void_f_int_pvoid_t function);
19
20 SG_END_DECL()
21
22 #endif /* SYNCHRO_H_ */