[VictoriaFalls] Register VFS endpoint with yellowstone.

This commit is contained in:
Drew Galbraith 2023-11-02 18:55:05 -07:00
parent 48c7721b0f
commit 38fb6ca170
5 changed files with 30 additions and 8 deletions

View file

@ -20,6 +20,7 @@ class YellowstoneServer : public YellowstoneServerBase {
Empty&) override;
glcr::ErrorCode WaitDenaliRegistered();
glcr::ErrorCode WaitVictoriaFallsRegistered();
private:
// TODO: Store these in a data structure.
@ -31,6 +32,8 @@ class YellowstoneServer : public YellowstoneServerBase {
PciReader pci_reader_;
Mutex has_denali_mutex_;
Mutex has_victoriafalls_mutex_;
YellowstoneServer(z_cap_t endpoint_cap, Mutex&& mutex);
YellowstoneServer(z_cap_t endpoint_cap, Mutex&& denali_mutex,
Mutex&& victoriafalls_mutex);
};