X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/274b996ead50456d7519b1cbd5d4f86e0a9154ec..7df3ee122334b95ac2b66abf5d584f91554d3131:/examples/msg/migration/migration.c diff --git a/examples/msg/migration/migration.c b/examples/msg/migration/migration.c index 7ce09671ff..95bd58c4ef 100644 --- a/examples/msg/migration/migration.c +++ b/examples/msg/migration/migration.c @@ -6,6 +6,7 @@ #include "msg/msg.h" /* core library */ #include "xbt/sysdep.h" /* calloc */ +#include "xbt/synchro_core.h" /* Create a log channel to have nice outputs. */ #include "xbt/log.h" @@ -71,7 +72,7 @@ static int policeman(int argc, char *argv[]) /** Main function */ int main(int argc, char *argv[]) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; /* Argument checking */ MSG_init(&argc, argv); @@ -98,9 +99,6 @@ int main(int argc, char *argv[]) xbt_cond_destroy(cond); xbt_mutex_destroy(mutex); - if (res == MSG_OK) - res = MSG_clean(); - if (res == MSG_OK) return 0; else