Sha256: 873a88b2072b2be8046e57e48a559febdf72ba7b10a1e129619540db4def5998
Contents?: true
Size: 420 Bytes
Versions: 16
Compression:
Stored size: 420 Bytes
Contents
// 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. //go:build ios // +build ios package unix import "unsafe" func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { return ENOTSUP } func ptracePtr(request int, pid int, addr uintptr, data unsafe.Pointer) (err error) { return ENOTSUP }
Version data entries
16 entries across 16 versions & 1 rubygems