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 69e8af5 commit a7ea0d9Copy full SHA for a7ea0d9
ompi/request/request.h
@@ -151,6 +151,9 @@ typedef struct ompi_request_t ompi_request_t;
151
*/
152
#define PREDEFINED_REQUEST_PAD 256
153
154
+#define REQUEST_PENDING (void *)0L
155
+#define REQUEST_COMPLETED (void *)1L
156
+
157
struct ompi_predefined_request_t {
158
struct ompi_request_t request;
159
char padding[PREDEFINED_REQUEST_PAD - sizeof(ompi_request_t)];
opal/mca/threads/wait_sync.h
@@ -30,9 +30,6 @@ extern int opal_max_thread_in_progress;
30
31
#include MCA_threads_wait_sync_base_include_HEADER
32
33
-#define REQUEST_PENDING (void *)0L
34
-#define REQUEST_COMPLETED (void *)1L
35
-
36
/**
37
* Update the status of the synchronization primitive. If an error is
38
* reported the synchronization is completed and the signal
0 commit comments