diff options
Diffstat (limited to 'vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go b/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go deleted file mode 100644 index d7c881b..0000000 --- a/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +++ /dev/null | |||
@@ -1,49 +0,0 @@ | |||
1 | // Code generated by linux/mkall.go generatePtracePair("mips", "mips64"). DO NOT EDIT. | ||
2 | |||
3 | //go:build linux && (mips || mips64) | ||
4 | |||
5 | package unix | ||
6 | |||
7 | import "unsafe" | ||
8 | |||
9 | // PtraceRegsMips is the registers used by mips binaries. | ||
10 | type PtraceRegsMips struct { | ||
11 | Regs [32]uint64 | ||
12 | Lo uint64 | ||
13 | Hi uint64 | ||
14 | Epc uint64 | ||
15 | Badvaddr uint64 | ||
16 | Status uint64 | ||
17 | Cause uint64 | ||
18 | } | ||
19 | |||
20 | // PtraceGetRegsMips fetches the registers used by mips binaries. | ||
21 | func PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error { | ||
22 | return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout)) | ||
23 | } | ||
24 | |||
25 | // PtraceSetRegsMips sets the registers used by mips binaries. | ||
26 | func PtraceSetRegsMips(pid int, regs *PtraceRegsMips) error { | ||
27 | return ptracePtr(PTRACE_SETREGS, pid, 0, unsafe.Pointer(regs)) | ||
28 | } | ||
29 | |||
30 | // PtraceRegsMips64 is the registers used by mips64 binaries. | ||
31 | type PtraceRegsMips64 struct { | ||
32 | Regs [32]uint64 | ||
33 | Lo uint64 | ||
34 | Hi uint64 | ||
35 | Epc uint64 | ||
36 | Badvaddr uint64 | ||
37 | Status uint64 | ||
38 | Cause uint64 | ||
39 | } | ||
40 | |||
41 | // PtraceGetRegsMips64 fetches the registers used by mips64 binaries. | ||
42 | func PtraceGetRegsMips64(pid int, regsout *PtraceRegsMips64) error { | ||
43 | return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout)) | ||
44 | } | ||
45 | |||
46 | // PtraceSetRegsMips64 sets the registers used by mips64 binaries. | ||
47 | func PtraceSetRegsMips64(pid int, regs *PtraceRegsMips64) error { | ||
48 | return ptracePtr(PTRACE_SETREGS, pid, 0, unsafe.Pointer(regs)) | ||
49 | } | ||