Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'hypervisor' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid into hypervisor
[simgrid.git] / src / surf / sg_platf.c
index f5ddb1b..b82d3e0 100644 (file)
@@ -39,6 +39,13 @@ xbt_dynar_t sg_platf_mount_cb_list = NULL; // of sg_platf_storage_cb_t
 
 xbt_dynar_t sg_platf_process_cb_list = NULL;
 
+/* ***************************************** */
+/* TUTORIAL: New TAG                         */
+
+xbt_dynar_t sg_platf_gpu_cb_list = NULL;
+/* ***************************************** */
+
+
 static int surf_parse_models_setup_already_called;
 
 /* one RngStream for the platform, to respect some statistic rules */
@@ -77,6 +84,12 @@ void sg_platf_init(void) {
   sg_platf_mount_cb_list = xbt_dynar_new(sizeof(sg_platf_storage_cb_t), NULL);
 
   sg_platf_process_cb_list = xbt_dynar_new(sizeof(sg_platf_process_cb_t), NULL);
+
+  /* ***************************************** */
+  /* TUTORIAL: New TAG                         */
+
+  sg_platf_gpu_cb_list = xbt_dynar_new(sizeof(sg_platf_gpu_cb_t), NULL);
+  /* ***************************************** */
 }
 /** Module management function: frees all internal data structures */
 void sg_platf_exit(void) {
@@ -107,6 +120,13 @@ void sg_platf_exit(void) {
 
   xbt_dynar_free(&sg_platf_process_cb_list);
 
+  /* ***************************************** */
+  /* TUTORIAL: New TAG                         */
+
+  xbt_dynar_free(&sg_platf_gpu_cb_list);
+
+  /* ***************************************** */
+
   /* make sure that we will reinit the models while loading the platf once reinited */
   surf_parse_models_setup_already_called = 0;
 }
@@ -195,7 +215,8 @@ void sg_platf_new_route(sg_platf_route_cbarg_t route) {
   xbt_dynar_foreach(sg_platf_route_cb_list, iterator, fun) {
     fun(route);
   }
-}void sg_platf_new_ASroute(sg_platf_route_cbarg_t ASroute) {
+}
+void sg_platf_new_ASroute(sg_platf_route_cbarg_t ASroute) {
   unsigned int iterator;
   sg_platf_route_cb_t fun;
   xbt_dynar_foreach(sg_platf_ASroute_cb_list, iterator, fun) {
@@ -208,7 +229,8 @@ void sg_platf_new_bypassRoute(sg_platf_route_cbarg_t bypassRoute) {
   xbt_dynar_foreach(sg_platf_bypassRoute_cb_list, iterator, fun) {
     fun(bypassRoute);
   }
-}void sg_platf_new_bypassASroute(sg_platf_route_cbarg_t bypassASroute) {
+}
+void sg_platf_new_bypassASroute(sg_platf_route_cbarg_t bypassASroute) {
   unsigned int iterator;
   sg_platf_route_cb_t fun;
   xbt_dynar_foreach(sg_platf_bypassASroute_cb_list, iterator, fun) {
@@ -229,7 +251,7 @@ void sg_platf_new_trace(sg_platf_trace_cbarg_t trace) {
     fun(trace);
   }
 }
-void sg_platf_new_trace_connect(sg_platf_trace_connect_cbarg_t trace_connect) {
+void sg_platf_trace_connect(sg_platf_trace_connect_cbarg_t trace_connect) {
   unsigned int iterator;
   sg_platf_trace_connect_cb_t fun;
   xbt_dynar_foreach(sg_platf_trace_connect_cb_list, iterator, fun) {
@@ -313,6 +335,23 @@ void sg_platf_new_AS_end() {
   }
 }
 
+/* ***************************************** */
+/* TUTORIAL: New TAG                         */
+
+void sg_platf_new_gpu(sg_platf_gpu_cbarg_t gpu) {
+  unsigned int iterator;
+  void_f_void_t fun;
+  xbt_dynar_foreach(sg_platf_gpu_cb_list, iterator, fun) {
+    fun();
+  }
+}
+
+void sg_platf_gpu_add_cb(sg_platf_gpu_cb_t fct) {
+  xbt_dynar_push(sg_platf_gpu_cb_list, &fct);
+}
+
+/* ***************************************** */
+
 
 void sg_platf_host_add_cb(sg_platf_host_cb_t fct) {
   xbt_dynar_push(sg_platf_host_cb_list, &fct);