Skip to content

Commit 1430df3

Browse files
committed
Add 'orte_' prefix to noop_mpir_breakpoint_ptr.
Signed-off-by: Austen Lauria <[email protected]> (cherry picked from commit 7714468)
1 parent 3eb7b27 commit 1430df3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orte/orted/orted_submit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ ORTE_DECLSPEC void __opal_attribute_optnone__ MPIR_Breakpoint(void);
191191
* See the following git issue for more discussion:
192192
* https://github.com/open-mpi/ompi/issues/5501
193193
*/
194-
volatile void* volatile noop_mpir_breakpoint_ptr = NULL;
194+
volatile void* volatile orte_noop_mpir_breakpoint_ptr = NULL;
195195

196196
/*
197197
* Breakpoint function for parallel debuggers
@@ -209,7 +209,7 @@ void MPIR_Breakpoint(void)
209209
* *should not* be used anywhere else in the code.
210210
* So pointing this to the weeds should be OK.
211211
*/
212-
noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
212+
orte_noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
213213
return;
214214
}
215215

0 commit comments

Comments
 (0)