Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove MSG. Its EOL was scheduled for 2020
[simgrid.git] / include / simgrid / plugins / load.h
index 2fb2a94..41f9563 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2017. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2017-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -7,21 +6,29 @@
 #ifndef SIMGRID_PLUGINS_LOAD_H_
 #define SIMGRID_PLUGINS_LOAD_H_
 
+#include <simgrid/config.h>
 #include <simgrid/forward.h>
 #include <xbt/base.h>
 
-SG_BEGIN_DECL()
-
-XBT_PUBLIC(void) sg_host_load_plugin_init();
-XBT_PUBLIC(double) sg_host_get_current_load(sg_host_t host);
-XBT_PUBLIC(double) sg_host_get_idle_time(sg_host_t host);
-XBT_PUBLIC(double) sg_host_get_computed_flops(sg_host_t host);
-XBT_PUBLIC(void) sg_host_load_reset(sg_host_t host);
-
-#define MSG_host_load_plugin_init() sg_host_load_plugin_init()
-#define MSG_host_get_current_load(host) sg_host_get_current_load(host)
-#define MSG_host_get_computed_flops(host) sg_host_get_computed_flops(host)
-
-SG_END_DECL()
+SG_BEGIN_DECL
+
+XBT_PUBLIC void sg_host_load_plugin_init();
+XBT_PUBLIC double sg_host_get_current_load(const_sg_host_t host);
+XBT_PUBLIC double sg_host_get_avg_load(const_sg_host_t host);
+XBT_PUBLIC double sg_host_get_idle_time(const_sg_host_t host);
+XBT_PUBLIC double sg_host_get_total_idle_time(const_sg_host_t host);
+XBT_PUBLIC double sg_host_get_computed_flops(const_sg_host_t host);
+XBT_PUBLIC void sg_host_load_reset(const_sg_host_t host);
+
+XBT_PUBLIC void sg_link_load_plugin_init();
+XBT_PUBLIC void sg_link_load_track(const_sg_link_t link);
+XBT_PUBLIC void sg_link_load_untrack(const_sg_link_t link);
+XBT_PUBLIC void sg_link_load_reset(const_sg_link_t link);
+XBT_PUBLIC double sg_link_get_cum_load(const_sg_link_t link);
+XBT_PUBLIC double sg_link_get_avg_load(const_sg_link_t link);
+XBT_PUBLIC double sg_link_get_min_instantaneous_load(const_sg_link_t link);
+XBT_PUBLIC double sg_link_get_max_instantaneous_load(const_sg_link_t link);
+
+SG_END_DECL
 
 #endif