Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[PLUGINS] Initial commit for the Dvfs plugin (frequency governors)
[simgrid.git] / include / simgrid / plugins / dvfs.h
diff --git a/include/simgrid/plugins/dvfs.h b/include/simgrid/plugins/dvfs.h
new file mode 100644 (file)
index 0000000..57726ed
--- /dev/null
@@ -0,0 +1,21 @@
+/* Copyright (c) 2017. 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. */
+
+#ifndef SIMGRID_PLUGINS_DVFS_H_
+#define SIMGRID_PLUGINS_DVFS_H_
+
+#include <simgrid/forward.h>
+#include <xbt/base.h>
+
+SG_BEGIN_DECL()
+
+XBT_PUBLIC(void) sg_host_dvfs_plugin_init();
+
+#define MSG_host_dvfs_plugin_init() sg_host_dvfs_plugin_init()
+
+SG_END_DECL()
+
+#endif