Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / include / simgrid / plugins / file_system.h
1 /* Copyright (c) 2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_PLUGINS_FILE_SYSTEM_H_
8 #define SIMGRID_PLUGINS_FILE_SYSTEM_H_
9
10 #include <simgrid/forward.h>
11 #include <xbt/base.h>
12
13 SG_BEGIN_DECL()
14
15 XBT_PUBLIC(void) sg_storage_file_system_init();
16 XBT_PUBLIC(sg_size_t) sg_storage_get_size_free(sg_storage_t st);
17 XBT_PUBLIC(sg_size_t) sg_storage_get_size_used(sg_storage_t st);
18 XBT_PUBLIC(sg_size_t) sg_storage_get_size(sg_storage_t st);
19
20 #define MSG_storage_file_system_init() sg_storage_file_system_init()
21 #define MSG_storage_get_free_size(st) sg_storage_get_size_free(st)
22 #define MSG_storage_get_used_size(st) sg_storage_get_size_used(st)
23 #define MSG_storage_get_size(st) sg_storage_get_size(st)
24
25 SG_END_DECL()
26
27 #endif