Skip to content

Commit 0b4310b

Browse files
author
Ralph Castain
committed
Remove an unnecessary header that forced exposure of the PMIx internal headers
1 parent e8246e0 commit 0b4310b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

opal/mca/pmix/external/pmix_ext_client.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,19 @@
3030
#include "opal/mca/pmix/base/base.h"
3131
#include "pmix_ext.h"
3232
#include "pmix.h"
33-
#include "src/buffer_ops/buffer_ops.h"
3433

3534
static pmix_proc_t my_proc;
3635
static char *dbgvalue=NULL;
3736
static int errhdler_ref = 0;
3837

38+
#define PMIX_WAIT_FOR_COMPLETION(a) \
39+
do { \
40+
while ((a)) { \
41+
usleep(10); \
42+
} \
43+
} while (0)
44+
45+
3946
static void completion_handler (void * cbdata) {
4047
int * cond = (int *)cbdata;
4148
*cond = 0;

0 commit comments

Comments
 (0)