mirror of
https://github.com/opencontainers/runc.git
synced 2025-10-15 12:00:51 +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
311 B
Go
12 lines
311 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 darwin,!ios
|
|
|
|
package unix
|
|
|
|
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
|
|
return ptrace1(request, pid, addr, data)
|
|
}
|