X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/df12bbc75c274351f3b3a628740e0b3270f08e18..3356a5d7d4ab2de2e1454a42718319754bb3c68f:/examples/msg/sendrecv/sendrecv.c diff --git a/examples/msg/sendrecv/sendrecv.c b/examples/msg/sendrecv/sendrecv.c index 75b84bc02e..038697c600 100644 --- a/examples/msg/sendrecv/sendrecv.c +++ b/examples/msg/sendrecv/sendrecv.c @@ -26,7 +26,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, int sender(int argc, char *argv[]); int receiver(int argc, char *argv[]); -MSG_error_t test_all(const char *platform_file, +msg_error_t test_all(const char *platform_file, const char *application_file); double task_comm_size_lat = 10e0; @@ -37,8 +37,8 @@ int sender(int argc, char *argv[]) { msg_host_t host = NULL; double time; - m_task_t task_la = NULL; - m_task_t task_bw = NULL; + msg_task_t task_la = NULL; + msg_task_t task_bw = NULL; char sprintf_buffer_la[64]; char sprintf_buffer_bw[64]; @@ -82,8 +82,8 @@ int sender(int argc, char *argv[]) int receiver(int argc, char *argv[]) { double time, time1, sender_time; - m_task_t task_la = NULL; - m_task_t task_bw = NULL; + msg_task_t task_la = NULL; + msg_task_t task_bw = NULL; int a; double communication_time = 0; @@ -130,11 +130,11 @@ int receiver(int argc, char *argv[]) /** Test function */ -MSG_error_t test_all(const char *platform_file, +msg_error_t test_all(const char *platform_file, const char *application_file) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; @@ -158,7 +158,7 @@ MSG_error_t test_all(const char *platform_file, /** Main function */ int main(int argc, char *argv[]) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; #ifdef _MSC_VER unsigned int prev_exponent_format = @@ -190,8 +190,6 @@ int main(int argc, char *argv[]) XBT_INFO("Total simulation time: %le", MSG_get_clock()); - MSG_clean(); - #ifdef _MSC_VER _set_output_format(prev_exponent_format); #endif