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