Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define missing function. v3_9_x
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Thu, 21 Feb 2013 17:28:27 +0000 (18:28 +0100)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Thu, 21 Feb 2013 17:29:51 +0000 (18:29 +0100)
src/simix/smx_network.c
src/simix/smx_network_private.h

index eb1ee0d..5d2bab2 100644 (file)
@@ -1063,6 +1063,11 @@ smx_process_t SIMIX_comm_get_dst_proc(smx_action_t action)
 }
 
 #ifdef HAVE_LATENCY_BOUND_TRACKING
+int SIMIX_pre_comm_is_latency_bounded(smx_simcall_t simcall, smx_action_t action)
+{
+  return SIMIX_comm_is_latency_bounded(action);
+}
+
 /**
  *  \brief verify if communication is latency bounded
  *  \param comm The communication
index 4add3ef..3a36864 100644 (file)
@@ -111,5 +111,8 @@ void* SIMIX_pre_comm_get_src_data(smx_simcall_t simcall, smx_action_t action);
 void* SIMIX_pre_comm_get_dst_data(smx_simcall_t simcall, smx_action_t action);
 smx_process_t SIMIX_pre_comm_get_src_proc(smx_simcall_t simcall, smx_action_t action);
 smx_process_t SIMIX_pre_comm_get_dst_proc(smx_simcall_t simcall, smx_action_t action);
+#ifdef HAVE_LATENCY_BOUND_TRACKING
+int SIMIX_pre_comm_is_latency_bounded(smx_simcall_t simcall, smx_action_t action);
+#endif
 #endif