1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-12-21 21:24:30 +00:00

Extra communicator free that I had missed.

Hard to audit them all as this is complex
This commit is contained in:
paboyle
2018-02-20 15:12:31 +00:00
parent 2dd63aa7a4
commit 4790e99817
4 changed files with 17 additions and 2 deletions

View File

@@ -399,5 +399,9 @@ void *SharedMemory::ShmBufferTranslate(int rank,void * local_p)
return (void *) remote;
}
}
SharedMemory::~SharedMemory()
{
MPI_Comm_free(&ShmComm);
};
}