diff options
| author | Stefan Boberg <[email protected]> | 2021-10-18 19:39:15 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-10-18 19:39:15 +0200 |
| commit | c6b0fa23f7161fbe5faedc03b5397a3e37f25e46 (patch) | |
| tree | ed596db41aeda9d393ab791199db2f91cda87b1c /zenstore/gc.cpp | |
| parent | minor: comment edits (diff) | |
| download | zen-c6b0fa23f7161fbe5faedc03b5397a3e37f25e46.tar.xz zen-c6b0fa23f7161fbe5faedc03b5397a3e37f25e46.zip | |
Some gc interface stubs
Diffstat (limited to 'zenstore/gc.cpp')
| -rw-r--r-- | zenstore/gc.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/zenstore/gc.cpp b/zenstore/gc.cpp index e7c8f3a1a..f7e448887 100644 --- a/zenstore/gc.cpp +++ b/zenstore/gc.cpp @@ -49,7 +49,19 @@ CasGc::CollectGarbage() } void -CasGc::OnNewReferences(std::span<IoHash> Hashes) +CasGc::OnNewCidReferences(std::span<IoHash> Hashes) +{ + ZEN_UNUSED(Hashes); +} + +void +CasGc::OnCommittedCidReferences(std::span<IoHash> Hashes) +{ + ZEN_UNUSED(Hashes); +} + +void +CasGc::OnDroppedCidReferences(std::span<IoHash> Hashes) { ZEN_UNUSED(Hashes); } |