Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to bind worker threads to cores when possible
[simgrid.git] / include / xbt / module.h
1 /* module - modularize the code                                             */
2
3 /* Copyright (c) 2004-2007, 2009-2010, 2012-2014. 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 _XBT_MODULE_H
10 #define _XBT_MODULE_H
11
12 #include <xbt/misc.h>           /* XBT_PUBLIC */
13
14 SG_BEGIN_DECL()
15
16 XBT_PUBLIC(void) xbt_init(int *argc, char **argv);
17 XBT_PUBLIC(void) xbt_exit(void);
18
19 SG_END_DECL()
20
21 #endif                          /* _XBT_MODULE_H */