Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modernize FindSimGrid
[simgrid.git] / include / simgrid / plugins / load.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_LOAD_H_
8 #define SIMGRID_PLUGINS_LOAD_H_
9
10 #include <simgrid/forward.h>
11 #include <xbt/base.h>
12
13 SG_BEGIN_DECL()
14
15 XBT_PUBLIC(void) sg_host_load_plugin_init();
16 XBT_PUBLIC(double) sg_host_get_current_load(sg_host_t host);
17 XBT_PUBLIC(double) sg_host_get_avg_load(sg_host_t host);
18 XBT_PUBLIC(double) sg_host_get_idle_time(sg_host_t host);
19 XBT_PUBLIC(double) sg_host_get_computed_flops(sg_host_t host);
20 XBT_PUBLIC(void) sg_host_load_reset(sg_host_t host);
21
22 #define MSG_host_load_plugin_init() sg_host_load_plugin_init()
23 #define MSG_host_get_current_load(host) sg_host_get_current_load(host)
24 #define MSG_host_get_computed_flops(host) sg_host_get_computed_flops(host)
25
26 SG_END_DECL()
27
28 #endif