shared mem in the middle of modifying multi

This commit is contained in:
2018-06-18 17:51:30 +02:00
parent 2eecf43fbb
commit 99bf6446fe
3 changed files with 781 additions and 620 deletions

View File

@ -16,4 +16,10 @@ struct SharedMemoryException : public exception {
public:
SharedMemoryException() {}
string GetMessage() const { return "Shared Memory Failed";};
};//shmException;
};
struct ThreadpoolException : public exception {
public:
ThreadpoolException() {}
string GetMessage() const { return "Threadpool Failed";};
};