| 109 | } |
| 110 | |
| 111 | type mountManager struct { |
| 112 | db *bolt.DB |
| 113 | targets *os.Root |
| 114 | handlers map[string]mount.Handler |
| 115 | rootMap map[string]*os.Root |
| 116 | |
| 117 | rwlock sync.RWMutex |
| 118 | activate kmutex.KeyedLocker |
| 119 | } |
| 120 | |
| 121 | func (mm *mountManager) Close() error { |
| 122 | var errs []error |
nothing calls this directly
no outgoing calls
no test coverage detected