mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-05-07 04:04:12 +02:00
fix to access to shared memory that doesnt exist (#638)
* fix to access to shared memory that doesnt exist * fix for freeing shm and then setting hostname from API * exception error message moved to private function * refactoring to avoid allocating intermediate string
This commit is contained in:
@@ -253,14 +253,15 @@ void DetectorImpl::setVirtualDetectorServers(const int numdet, const int port) {
|
||||
}
|
||||
|
||||
void DetectorImpl::setHostname(const std::vector<std::string> &name) {
|
||||
// this check is there only to allow the previous detsizechan command
|
||||
if (shm()->totalNumberOfModules != 0) {
|
||||
// do not free always to allow the previous detsize/ initialchecks command
|
||||
if (shm.exists() && shm()->totalNumberOfModules != 0) {
|
||||
LOG(logWARNING) << "There are already module(s) in shared memory."
|
||||
"Freeing Shared memory now.";
|
||||
bool initialChecks = shm()->initialChecks;
|
||||
freeSharedMemory();
|
||||
}
|
||||
// could be called after freeing shm from API
|
||||
if (!shm.exists()) {
|
||||
setupDetector();
|
||||
shm()->initialChecks = initialChecks;
|
||||
}
|
||||
for (const auto &hostname : name) {
|
||||
addModule(hostname);
|
||||
|
||||
Reference in New Issue
Block a user