mirror of
https://github.com/containerd/containerd.git
synced 2026-07-26 03:06:33 +00:00
12 lines
184 B
Go
12 lines
184 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package socket
|
|
|
|
const (
|
|
// These operating systems do not support CLOEXEC and NONBLOCK socket
|
|
// options.
|
|
flagCLOEXEC = false
|
|
socketFlags = 0
|
|
)
|