From 8ccd14d50832e2bb3c1ae6151446964202f84772 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Sun, 1 Aug 2010 22:31:34 +0000 Subject: [PATCH] Correct the -h output to reflect that --bind-to-none is the default behavior This commit was SVN r23537. --- orte/tools/orterun/orterun.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orte/tools/orterun/orterun.c b/orte/tools/orterun/orterun.c index 8b9a90bd3f..88d5abbaab 100644 --- a/orte/tools/orterun/orterun.c +++ b/orte/tools/orterun/orterun.c @@ -306,10 +306,10 @@ static opal_cmd_line_init_t cmd_line_init[] = { /* binding options */ { NULL, NULL, NULL, '\0', "bind-to-none", "bind-to-none", 0, &orterun_globals.bind_to_none, OPAL_CMD_LINE_TYPE_BOOL, - "Do not bind processes to cores or sockets" }, + "Do not bind processes to cores or sockets (default)" }, { NULL, NULL, NULL, '\0', "bind-to-core", "bind-to-core", 0, &orterun_globals.bind_to_core, OPAL_CMD_LINE_TYPE_BOOL, - "Whether to bind processes to specific cores (the default)" }, + "Whether to bind processes to specific cores" }, { NULL, NULL, NULL, '\0', "bind-to-board", "bind-to-board", 0, &orterun_globals.bind_to_board, OPAL_CMD_LINE_TYPE_BOOL, "Whether to bind processes to specific boards (meaningless on 1 board/node)" },