Commit 06f49148 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent f9d2c4e8
...@@ -155,6 +155,12 @@ type ΔFtail struct { ...@@ -155,6 +155,12 @@ type ΔFtail struct {
ztrackInRoot map[zodb.Oid]setOid // {} zblk -> {}root ztrackInRoot map[zodb.Oid]setOid // {} zblk -> {}root
} }
// _RootTrack represents tracking information about one particular tree as of @head.
type _RootTrack struct {
ftrackSet setOid // {}foid which ZBigFiles refer to this tree
ztrackInBlk map[zodb.Oid]setI64 // {} zblk -> {}blk which blocks map to zblk
}
// _ΔFileTail represents tail of revisional changes to one file. // _ΔFileTail represents tail of revisional changes to one file.
type _ΔFileTail struct { type _ΔFileTail struct {
root zodb.Oid // .blktab as of @head root zodb.Oid // .blktab as of @head
...@@ -175,12 +181,6 @@ type _ΔFileEpoch struct { ...@@ -175,12 +181,6 @@ type _ΔFileEpoch struct {
oldZinblk map[zodb.Oid]setI64 // {} zblk -> {}blk oldZinblk map[zodb.Oid]setI64 // {} zblk -> {}blk
} }
// _RootTrack represents tracking information about one particular tree as of @head.
type _RootTrack struct {
ftrackSet setOid // {}foid which ZBigFiles refer to this tree
ztrackInBlk map[zodb.Oid]setI64 // {} zblk -> {}blk which blocks map to zblk
}
// _RebuildJob represents currently in-progress vδE rebuilding job. // _RebuildJob represents currently in-progress vδE rebuilding job.
type _RebuildJob struct { type _RebuildJob struct {
ready chan struct{} // closed when job completes ready chan struct{} // closed when job completes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment