Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into vmtrace
[simgrid.git] / src / include / simgrid / platf_interface.h
index 86514b5..691f238 100644 (file)
@@ -38,7 +38,13 @@ typedef void (*sg_platf_storage_type_cb_t)(sg_platf_storage_type_cbarg_t);
 typedef void (*sg_platf_mount_cb_t)(sg_platf_mount_cbarg_t);
 typedef void (*sg_platf_mstorage_cb_t)(sg_platf_mstorage_cbarg_t);
 
-typedef void (*sg_platf_process_cb_t)(sg_platf_process_cbarg_t);
+/* ***************************************** */
+/* TUTORIAL: New TAG                         */
+
+typedef void (*sg_platf_gpu_cb_t)(sg_platf_gpu_cbarg_t);
+void sg_platf_gpu_add_cb(sg_platf_gpu_cb_t);
+/* ***************************************** */
+
 
 void sg_platf_host_add_cb(sg_platf_host_cb_t);
 void sg_platf_host_link_add_cb(sg_platf_host_link_cb_t);
@@ -65,8 +71,6 @@ void sg_platf_mstorage_add_cb(sg_platf_mstorage_cb_t fct);
 void sg_platf_storage_type_add_cb(sg_platf_storage_type_cb_t fct);
 void sg_platf_mount_add_cb(sg_platf_mount_cb_t fct);
 
-void sg_platf_process_add_cb(sg_platf_process_cb_t fct);
-
 /** \brief Pick the right models for CPU, net and workstation, and call their model_init_preparse
  *
  * Must be called within parsing/creating the environment (after the <config>s, if any, and before <AS> or friends such as <cluster>)