Merge pull request #1436 from rhc54/topic/names
Ensure the process name is positive when using direct launch
Этот коммит содержится в:
Коммит
7b84207465
@ -120,6 +120,8 @@ int pmix1_client_init(void)
|
||||
/* we were launched by someone else, so make the
|
||||
* jobid just be the hash of the nspace */
|
||||
OPAL_HASH_STR(my_proc.nspace, pname.jobid);
|
||||
/* keep it from being negative */
|
||||
pname.jobid &= ~(0x8000);
|
||||
}
|
||||
/* insert this into our list of jobids - it will be the
|
||||
* first, and so we'll check it first */
|
||||
|
@ -64,6 +64,8 @@ int pmix120_client_init(void)
|
||||
/* we were launched by someone else, so make the
|
||||
* jobid just be the hash of the nspace */
|
||||
OPAL_HASH_STR(my_proc.nspace, pname.jobid);
|
||||
/* keep it from being negative */
|
||||
pname.jobid &= ~(0x8000);
|
||||
}
|
||||
/* insert this into our list of jobids - it will be the
|
||||
* first, and so we'll check it first */
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user