Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
06d1de8fd41aaf4ec8ba778a203d7f16f0bd503d
[simgrid.git] / include / simgrid / plugins / energy.h
1 /* Copyright (c) 2016. 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_ENERGY_H_
8 #define SIMGRID_PLUGINS_ENERGY_H_
9
10 #include <xbt/base.h>
11 #include <simgrid/forward.h>
12
13 SG_BEGIN_DECL()
14
15 XBT_PUBLIC(void) sg_host_energy_plugin_init();
16 XBT_PUBLIC(double) sg_host_get_consumed_energy(sg_host_t host);
17 XBT_PUBLIC(double) sg_host_get_wattmin_at(sg_host_t host, int pstate);
18 XBT_PUBLIC(double) sg_host_get_wattmax_at(sg_host_t host, int pstate);
19
20 #define MSG_host_energy_plugin_init() sg_energy_plugin_init()
21 #define MSG_host_get_consumed_energy(host) sg_host_get_consumed_energy(host)
22 #define MSG_host_get_wattmin_at(host,pstate) sg_host_get_wattmin_at(host,pstate)
23 #define MSG_host_get_wattmax_at(host,pstate) sg_host_get_wattmax_at(host,pstate)
24
25 SG_END_DECL()
26
27 #endif