mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
ofi: fix Events() signature
This commit is contained in:
parent
857aa84fa3
commit
091d0824d1
|
@ -41,7 +41,7 @@ class Socket final : public fair::mq::Socket
|
||||||
|
|
||||||
auto GetId() const -> std::string override { return fId; }
|
auto GetId() const -> std::string override { return fId; }
|
||||||
|
|
||||||
auto Events(uint32_t *events) -> void override { *events = 0; }
|
auto Events(uint32_t *events) -> int override { *events = 0; }
|
||||||
auto Bind(const std::string& address) -> bool override;
|
auto Bind(const std::string& address) -> bool override;
|
||||||
auto Connect(const std::string& address) -> bool override;
|
auto Connect(const std::string& address) -> bool override;
|
||||||
|
|
||||||
|
|
|
@ -410,7 +410,7 @@ class Manager
|
||||||
}
|
}
|
||||||
fRegionEventsShmCV.notify_all();
|
fRegionEventsShmCV.notify_all();
|
||||||
} catch(std::out_of_range& oor) {
|
} catch(std::out_of_range& oor) {
|
||||||
LOG(debug) << "RemoveRegion() could not locate region with id'" << id << "'";
|
LOG(debug) << "RemoveRegion() could not locate region with id '" << id << "'";
|
||||||
}
|
}
|
||||||
fRegionsGen += 1; // signal TL cache invalidation
|
fRegionsGen += 1; // signal TL cache invalidation
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user