()
| 25 | } |
| 26 | |
| 27 | func newShared() *shared { |
| 28 | return &shared{ |
| 29 | pending: make(map[common.Txid]*txPending), |
| 30 | allocs: make(map[common.Pgid]common.Txid), |
| 31 | cache: make(map[common.Pgid]struct{}), |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func (t *shared) pendingPageIds() map[common.Txid]*txPending { |
| 36 | return t.pending |
no outgoing calls
no test coverage detected