mirror of
https://github.com/containers/podman.git
synced 2025-11-14 01:57:58 +08:00
10 lines
107 B
Go
10 lines
107 B
Go
package retry
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func isErrnoERESTART(e error) bool {
|
|
return e == syscall.ERESTART
|
|
}
|