mirror of
https://github.com/containers/podman.git
synced 2025-10-14 17:55:51 +08:00
Add initial version of renumber backend
Renumber is a way of renumbering container locks after the number of locks available has changed. For now, renumber only works with containers. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
@ -27,3 +27,8 @@ func (m *SHMLockManager) AllocateLock() (Locker, error) {
|
||||
func (m *SHMLockManager) RetrieveLock(id string) (Locker, error) {
|
||||
return nil, fmt.Errorf("not supported")
|
||||
}
|
||||
|
||||
// FreeAllLocks is not supported on this platform
|
||||
func (m *SHMLockManager) FreeAllLocks() error {
|
||||
return fmt.Errorf("not supported")
|
||||
}
|
||||
|
Reference in New Issue
Block a user