mirror of
https://github.com/opencontainers/runc.git
synced 2025-10-16 04:20:52 +08:00

Switch from github.com/golang/protobuf (which appears to be obsoleted) to google.golang.org/protobuf (which appears to be a replacement). This needs a bump to go-criu v5. [v2: fix debug print in criuSwrk] [v3: switch to go-criu v5] Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
12 lines
283 B
Go
12 lines
283 B
Go
// Copyright 2020 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build ios
|
|
|
|
package unix
|
|
|
|
func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
|
|
return ENOTSUP
|
|
}
|