We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a41e944 commit 71c4c19Copy full SHA for 71c4c19
orte/orted/orted_submit.c
@@ -190,7 +190,7 @@ ORTE_DECLSPEC void __opal_attribute_optnone__ MPIR_Breakpoint(void);
190
* See the following git issue for more discussion:
191
* https://github.com/open-mpi/ompi/issues/5501
192
*/
193
-volatile void* volatile noop_mpir_breakpoint_ptr = NULL;
+volatile void* volatile orte_noop_mpir_breakpoint_ptr = NULL;
194
195
/*
196
* Breakpoint function for parallel debuggers
@@ -208,7 +208,7 @@ void MPIR_Breakpoint(void)
208
* *should not* be used anywhere else in the code.
209
* So pointing this to the weeds should be OK.
210
211
- noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
+ orte_noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
212
return;
213
}
214
0 commit comments