Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions orte/orted/orted_submit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;
}

Expand Down