Skip to content

Commit

Permalink
#2063: Update RDMA_RecvType to accept std::byte*
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Mar 15, 2024
1 parent 7fe9e0c commit baa338a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/rdma/rdma_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ using ActiveGetFunctionType = RDMA_GetType(*)(BaseMessage*, ByteType, ByteType,
using ActivePutFunctionType = void(*)(BaseMessage*, RDMA_PtrType, ByteType, ByteType, TagType, bool);

using RDMA_PtrContinuationType = std::function<void(RDMA_PtrType)>;
using RDMA_RecvType = std::function<void(void* ptr, size_t num_bytes)>;
using RDMA_RecvType = std::function<void(std::byte* ptr, size_t num_bytes)>;

using RDMA_NumElemsType = int64_t;
using RDMA_BlockElmRangeType = std::tuple<RDMA_BlockType,RDMA_ElmType,RDMA_ElmType>;
Expand Down

0 comments on commit baa338a

Please sign in to comment.