Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into actor-yield
[simgrid.git] / src / include / simgrid / sg_config.h
1 /* Copyright (c) 2012-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_CONFIG_H
7 #define SIMGRID_CONFIG_H
8
9 #include "xbt/config.h"
10 #include "xbt/config.hpp"
11
12 /** Config Globals */
13 SG_BEGIN_DECL()
14
15 XBT_PUBLIC_DATA(xbt_cfg_t) simgrid_config;
16 XBT_PUBLIC_DATA(int) _sg_cfg_init_status;
17 XBT_PUBLIC_DATA(int) _sg_cfg_exit_asap;
18
19 XBT_PUBLIC(void) sg_config_init(int *argc, char **argv);
20 XBT_PUBLIC(void) sg_config_finalize();
21
22 SG_END_DECL()
23
24 #endif