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 3eb7b27 commit 1430df3Copy full SHA for 1430df3
orte/orted/orted_submit.c
@@ -191,7 +191,7 @@ ORTE_DECLSPEC void __opal_attribute_optnone__ MPIR_Breakpoint(void);
191
* See the following git issue for more discussion:
192
* https://github.com/open-mpi/ompi/issues/5501
193
*/
194
-volatile void* volatile noop_mpir_breakpoint_ptr = NULL;
+volatile void* volatile orte_noop_mpir_breakpoint_ptr = NULL;
195
196
/*
197
* Breakpoint function for parallel debuggers
@@ -209,7 +209,7 @@ void MPIR_Breakpoint(void)
209
* *should not* be used anywhere else in the code.
210
* So pointing this to the weeds should be OK.
211
212
- noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
+ orte_noop_mpir_breakpoint_ptr = (volatile void *) 0x42;
213
return;
214
}
215
0 commit comments