1
1

Add 'orte_' prefix to noop_mpir_breakpoint_ptr.

Signed-off-by: Austen Lauria <awlauria@us.ibm.com>
Этот коммит содержится в:
Austen Lauria 2019-09-18 17:44:40 -04:00
родитель a0d1912af3
Коммит 77144689f0

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

@ -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;
}