Skip to content

Commit 71c4c19

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 a41e944 commit 71c4c19

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
@@ -190,7 +190,7 @@ ORTE_DECLSPEC void __opal_attribute_optnone__ MPIR_Breakpoint(void);
190190
* See the following git issue for more discussion:
191191
* https://github.com/open-mpi/ompi/issues/5501
192192
*/
193-
volatile void* volatile noop_mpir_breakpoint_ptr = NULL;
193+
volatile void* volatile orte_noop_mpir_breakpoint_ptr = NULL;
194194

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

0 commit comments

Comments
 (0)