mirror of
https://github.com/containers/podman.git
synced 2025-10-15 10:16:28 +08:00
Add darwin support for remote-client
Add the ability to cross-compile podman remote for OSX. Also, add image exists and tag to remote-client. Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
@ -9,12 +9,12 @@ import "fmt"
|
||||
type SHMLockManager struct{}
|
||||
|
||||
// NewSHMLockManager is not supported on this platform
|
||||
func NewSHMLockManager(numLocks uint32) (Manager, error) {
|
||||
func NewSHMLockManager(path string, numLocks uint32) (Manager, error) {
|
||||
return nil, fmt.Errorf("not supported")
|
||||
}
|
||||
|
||||
// OpenSHMLockManager is not supported on this platform
|
||||
func OpenSHMLockManager(numLocks uint32) (Manager, error) {
|
||||
func OpenSHMLockManager(path string, numLocks uint32) (Manager, error) {
|
||||
return nil, fmt.Errorf("not supported")
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user