Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5e602a512872fe2e452d24ea3b17c67751a46967
[simgrid.git] / src / include / simgrid / sg_config.hpp
1 /* Copyright (c) 2012-2019. 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_HPP
7 #define SIMGRID_CONFIG_HPP
8
9 #include "xbt/config.hpp"
10
11 /** Config Globals */
12
13 XBT_PUBLIC_DATA int _sg_cfg_init_status;
14 XBT_PUBLIC_DATA bool _sg_cfg_exit_asap;
15
16 XBT_PUBLIC void sg_config_init(int* argc, char** argv);
17 XBT_PUBLIC void sg_config_finalize();
18
19 #endif