1
1

rename do-not-bind to bind-to-none and clean up an error message

This commit was SVN r21980.
Этот коммит содержится в:
Terry Dontje 2009-09-21 17:00:02 +00:00
родитель 13be2d2a00
Коммит 0ccf2d87b6
3 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -112,7 +112,9 @@ use "bind to socket" and other related functionality.
A request to bind the processes if the operating system supports
such an operation was made, but the OS does not support this operation:
Action requested: %s
Local host: %s
Action requested: %s
Application name: %s
Because the request was made on an "if-available" basis, the job was
launched without taking the requested action. If this is not the desired

Просмотреть файл

@ -116,7 +116,8 @@ orte_odls_base_module_t orte_odls_default_module = {
if (orte_odls_globals.report_bindings) { \
orte_show_help("help-odls-default.txt", \
"odls-default:binding-not-avail", \
true, (n)); \
true, orte_process_info.nodename, \
(n), context->app); \
} \
goto LAUNCH_PROCS; \
} \

Просмотреть файл

@ -310,7 +310,7 @@ static opal_cmd_line_init_t cmd_line_init[] = {
"Launch n processes per socket on all allocated nodes" },
/* binding options */
{ NULL, NULL, NULL, '\0', "do-not-bind", "do-not-bind", 0,
{ 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" },
{ NULL, NULL, NULL, '\0', "bind-to-core", "bind-to-core", 0,