2010-12-03 05:34:57 +01:00
|
|
|
// syscall_linux_386.go -- GNU/Linux 386 specific support
|
|
|
|
|
|
|
|
// Copyright 2009 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.
|
|
|
|
|
|
|
|
package syscall
|
|
|
|
|
2012-01-31 15:23:07 +01:00
|
|
|
import "unsafe"
|
|
|
|
|
2012-10-03 07:27:36 +02:00
|
|
|
func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) }
|
2010-12-03 05:34:57 +01:00
|
|
|
|
2012-10-03 07:27:36 +02:00
|
|
|
func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) }
|
2012-01-31 15:23:07 +01:00
|
|
|
|
|
|
|
func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) {
|
|
|
|
return ptrace(PTRACE_GETREGS, pid, 0, uintptr(unsafe.Pointer(regsout)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) {
|
|
|
|
return ptrace(PTRACE_SETREGS, pid, 0, uintptr(unsafe.Pointer(regs)))
|
2010-12-03 05:34:57 +01:00
|
|
|
}
|