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 611cd30 commit 50f666fCopy full SHA for 50f666f
mpi.h
@@ -510,10 +510,10 @@ typedef struct MPI_T_event_instance_t* MPI_T_event_instance;
510
#define MPI_T_PVAR_ALL_HANDLES ((MPI_T_pvar_handle)1)
511
512
typedef enum MPI_T_cb_safety {
513
- MPI_T_CB_REQUIRE_NONE = 0,
514
- MPI_T_CB_REQUIRE_MPI_RESTRICTED = 1,
515
- MPI_T_CB_REQUIRE_THREAD_SAFE = 3,
516
- MPI_T_CB_REQUIRE_ASYNC_SIGNAL_SAFE = 7
+ MPI_T_CB_REQUIRE_NONE = 0x00,
+ MPI_T_CB_REQUIRE_MPI_RESTRICTED = 0x03,
+ MPI_T_CB_REQUIRE_THREAD_SAFE = 0x0F,
+ MPI_T_CB_REQUIRE_ASYNC_SIGNAL_SAFE = 0x3F
517
} MPI_T_cb_safety;
518
519
typedef enum MPI_T_source_order {
0 commit comments