1
1

Merge pull request #6992 from awlauria/fix_prefix_mpir

Add 'orte_' prefix to noop_mpir_breakpoint_ptr.
Этот коммит содержится в:
Jeff Squyres 2019-09-18 22:15:13 -04:00 коммит произвёл GitHub
родитель cc586d808a 77144689f0
Коммит 13e4040037
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -192,7 +192,7 @@ ORTE_DECLSPEC void __opal_attribute_optnone__ MPIR_Breakpoint(void);
* See the following git issue for more discussion:
* https://github.com/open-mpi/ompi/issues/5501
*/
volatile void* volatile noop_mpir_breakpoint_ptr = NULL;
volatile void* volatile orte_noop_mpir_breakpoint_ptr = NULL;
/*
* Breakpoint function for parallel debuggers
@ -210,7 +210,7 @@ void MPIR_Breakpoint(void)
* *should not* be used anywhere else in the code.
* So pointing this to the weeds should be OK.
*/
noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
orte_noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
return;
}