// SharedMemoryClient
//=================================================================================
+#if !defined(NDEBUG)
static std::string unixerrorstr(int errnum) {
string errstr;
char buf[1024];
errstr += "(" + to_string(errnum) + ")";
return errstr;
}
+#endif
SharedMemoryClient::SharedMemoryClient (const char* segmentName, SegmentOffsetType segmentSize, uid_t uid)
{