Skip to content

Commit

Permalink
EPN SHM Tool: region config was not passed to constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrohr committed Nov 26, 2023
1 parent 186e298 commit 42a8244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/ShmManager/src/ShmManager.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ struct ShmManager {
}
#endif

auto ret = regions.emplace(id, make_unique<fair::mq::shmem::UnmanagedRegion>(shmId, id, size));
auto ret = regions.emplace(id, make_unique<fair::mq::shmem::UnmanagedRegion>(shmId, cfg));
fair::mq::shmem::UnmanagedRegion& region = *(ret.first->second);
LOG(info) << "Created unamanged region " << id << " of size " << region.GetSize() << ", starting at " << region.GetData() << ". Locking...";
region.Lock();
Expand Down

0 comments on commit 42a8244

Please sign in to comment.