From bf08108ffb2cde7188c534be0c17b3a95a8bb4d2 Mon Sep 17 00:00:00 2001 From: Yanfei Guo Date: Wed, 19 Jun 2024 12:11:54 -0500 Subject: [PATCH] stubnm: add missing data structure Fix building failure due to missing partitioned communication data structure. --- src/mpid/ch4/netmod/stubnm/stubnm_pre.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mpid/ch4/netmod/stubnm/stubnm_pre.h b/src/mpid/ch4/netmod/stubnm/stubnm_pre.h index c92be116d97..e916265cc1e 100644 --- a/src/mpid/ch4/netmod/stubnm/stubnm_pre.h +++ b/src/mpid/ch4/netmod/stubnm/stubnm_pre.h @@ -34,4 +34,8 @@ typedef struct { int dummy; } MPIDI_STUBNM_addr_t; +typedef struct { + int dummy; +} MPIDI_STUBNM_part_t; + #endif /* STUBNM_PRE_H_INCLUDED */