diff options
Diffstat (limited to 'libpod/lock/lock.go')
-rw-r--r-- | libpod/lock/lock.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/lock/lock.go b/libpod/lock/lock.go index 1f94171fe..b96393574 100644 --- a/libpod/lock/lock.go +++ b/libpod/lock/lock.go @@ -24,6 +24,9 @@ type Manager interface { // The underlying lock MUST be the same as another other lock with the // same UUID. RetrieveLock(id uint32) (Locker, error) + // FreeAllLocks frees all allocated locks, in preparation for lock + // reallocation. + FreeAllLocks() error } // Locker is similar to sync.Locker, but provides a method for freeing the lock |