From bf73242eb6ab85eaa6b4732b9afb4e84639d70ed Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Wed, 16 May 2018 15:32:54 +0200 Subject: [PATCH] [SMPI] Add function declarations to replay.hpp --- include/simgrid/smpi/replay.hpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/simgrid/smpi/replay.hpp b/include/simgrid/smpi/replay.hpp index 681c6b3051..2b091a7467 100644 --- a/include/simgrid/smpi/replay.hpp +++ b/include/simgrid/smpi/replay.hpp @@ -5,8 +5,11 @@ #ifndef SMPI_REPLAY_HPP #define SMPI_REPLAY_HPP -#include "private.hpp" +#include "smpi/smpi.h" +#include +#include #include +#include #include @@ -27,6 +30,11 @@ } \ } +extern XBT_PRIVATE void* smpi_get_tmp_sendbuffer(int size); +extern XBT_PRIVATE void* smpi_get_tmp_recvbuffer(int size); +extern XBT_PRIVATE void smpi_free_tmp_buffer(void* buf); +extern XBT_PRIVATE void smpi_free_replay_tmp_buffers(); + namespace simgrid { namespace smpi { namespace replay { -- 2.20.1