From 73001125643a510257400299fba0c457ae17ef9f Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Thu, 27 Oct 2005 17:08:30 +0000 Subject: [PATCH] removed debug This commit was SVN r7896. --- orte/mca/rmgr/urm/rmgr_urm.c | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/orte/mca/rmgr/urm/rmgr_urm.c b/orte/mca/rmgr/urm/rmgr_urm.c index c7acf2ffe1..765a92d2d1 100644 --- a/orte/mca/rmgr/urm/rmgr_urm.c +++ b/orte/mca/rmgr/urm/rmgr_urm.c @@ -293,13 +293,9 @@ static int orte_rmgr_urm_spawn( { int rc; orte_process_name_t* name; - struct timeval tv; OPAL_TRACE(1); - gettimeofday(&tv, NULL); - fprintf(stderr, "orte_rmgr_urm_spawn: %lu:%lu - resource discovery\n", tv.tv_sec, tv.tv_usec); - /* * Perform resource discovery. */ @@ -311,9 +307,6 @@ static int orte_rmgr_urm_spawn( mca_rmgr_urm_component.urm_rds = true; } - gettimeofday(&tv, NULL); - fprintf(stderr, "orte_rmgr_urm_spawn: %lu:%lu - create job\n", tv.tv_sec, tv.tv_usec); - /* * Initialize job segment and allocate resources */ /* JJH Insert C/N mapping stuff here */ @@ -323,17 +316,11 @@ static int orte_rmgr_urm_spawn( return rc; } - gettimeofday(&tv, NULL); - fprintf(stderr, "orte_rmgr_urm_spawn: %lu:%lu - allocate\n", tv.tv_sec, tv.tv_usec); - if (ORTE_SUCCESS != (rc = orte_rmgr_urm_allocate(*jobid))) { ORTE_ERROR_LOG(rc); return rc; } - gettimeofday(&tv, NULL); - fprintf(stderr, "orte_rmgr_urm_spawn: %lu:%lu - map\n", tv.tv_sec, tv.tv_usec); - if (ORTE_SUCCESS != (rc = orte_rmgr_urm_map(*jobid))) { ORTE_ERROR_LOG(rc); return rc; @@ -343,9 +330,6 @@ static int orte_rmgr_urm_spawn( * setup I/O forwarding */ - gettimeofday(&tv, NULL); - fprintf(stderr, "orte_rmgr_urm_spawn: %lu:%lu - I/O\n", tv.tv_sec, tv.tv_usec); - if (ORTE_SUCCESS != (rc = orte_ns.create_process_name(&name, 0, *jobid, 0))) { ORTE_ERROR_LOG(rc); return rc; @@ -371,9 +355,6 @@ static int orte_rmgr_urm_spawn( } } - gettimeofday(&tv, NULL); - fprintf(stderr, "orte_rmgr_urm_spawn: %lu:%lu - launch\n", tv.tv_sec, tv.tv_usec); - /* * launch the job */ @@ -382,9 +363,6 @@ static int orte_rmgr_urm_spawn( return rc; } - gettimeofday(&tv, NULL); - fprintf(stderr, "orte_rmgr_urm_spawn: %lu:%lu - launch complete\n", tv.tv_sec, tv.tv_usec); - orte_ns.free_name(&name); return ORTE_SUCCESS; }