Skip to content

Commit

Permalink
Fix rdma_dp to add Stats param
Browse files Browse the repository at this point in the history
  • Loading branch information
eisenhauer committed Aug 17, 2020
1 parent 7943da2 commit 909caf2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/adios2/toolkit/sst/dp/rdma_dp.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ typedef struct _RdmaWriterContactInfo
static DP_RS_Stream RdmaInitReader(CP_Services Svcs, void *CP_Stream,
void **ReaderContactInfoPtr,
struct _SstParams *Params,
attr_list WriterContact)
attr_list WriterContact, SstStats Stats)
{
Rdma_RS_Stream Stream = malloc(sizeof(struct _Rdma_RS_Stream));
CManager cm = Svcs->getCManager(CP_Stream);
Expand Down Expand Up @@ -394,7 +394,8 @@ typedef struct _RdmaCompletionHandle
} * RdmaCompletionHandle;

static DP_WS_Stream RdmaInitWriter(CP_Services Svcs, void *CP_Stream,
struct _SstParams *Params, attr_list DPAttrs)
struct _SstParams *Params, attr_list DPAttrs,
SstStats Stats)
{
Rdma_WS_Stream Stream = malloc(sizeof(struct _Rdma_WS_Stream));
CManager cm = Svcs->getCManager(CP_Stream);
Expand Down

0 comments on commit 909caf2

Please sign in to comment.