diff options
| author | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
|---|---|---|
| committer | Rutger Broekhoff | 2023-12-29 21:31:53 +0100 |
| commit | 404aeae4545d2426c089a5f8d5e82dae56f5212b (patch) | |
| tree | 2d84e00af272b39fc04f3795ae06bc48970e57b5 /vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go | |
| parent | 209d8b0187ed025dec9ac149ebcced3462877bff (diff) | |
| download | gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.tar.gz gitolfs3-404aeae4545d2426c089a5f8d5e82dae56f5212b.zip | |
Make Nix builds work
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, 49 insertions, 0 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 new file mode 100644 index 0000000..d7c881b --- /dev/null +++ b/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go | |||
| @@ -0,0 +1,49 @@ | |||
| 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 | } | ||