Skip to content

Add 'orte_' prefix to noop_mpir_breakpoint_ptr. #6992

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 19, 2019
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