From 0348479a2796507b00c93ea1c8c722da1ac09994 Mon Sep 17 00:00:00 2001 From: schnorr Date: Mon, 12 Apr 2010 14:46:56 +0000 Subject: [PATCH] removing instrumentation tracing from migration example git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7535 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/msg/migration/migration.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/msg/migration/migration.c b/examples/msg/migration/migration.c index 44de664709..7483953e87 100644 --- a/examples/msg/migration/migration.c +++ b/examples/msg/migration/migration.c @@ -16,7 +16,6 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, /** The guy we will move from host to host. It move alone and then is moved by policeman back */ static int emigrant(int argc, char *argv[]) { - TRACE_msg_set_process_category (MSG_process_self(), "emigrant"); m_task_t task; INFO0 ("I'll look for a new job on another machine where the grass is greener."); @@ -49,9 +48,6 @@ int main(int argc, char *argv[]) { MSG_error_t res = MSG_OK; - TRACE_start_with_mask ("zmsg_test.trace", TRACE_PLATFORM|TRACE_PROCESS); - TRACE_category ("emigrant"); - /* Argument checking */ MSG_global_init(&argc, argv); if (argc < 3) { @@ -74,8 +70,6 @@ int main(int argc, char *argv[]) if (res == MSG_OK) res = MSG_clean(); - TRACE_end (); - if (res == MSG_OK) return 0; else -- 2.20.1