diff options
Diffstat (limited to 'libgo/syscalls/syscall_linux_386.go')
-rw-r--r-- | libgo/syscalls/syscall_linux_386.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libgo/syscalls/syscall_linux_386.go b/libgo/syscalls/syscall_linux_386.go new file mode 100644 index 00000000000..05e93c4d8b8 --- /dev/null +++ b/libgo/syscalls/syscall_linux_386.go @@ -0,0 +1,17 @@ +// 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 + +const ARCH = "386" + +func (r *PtraceRegs) PC() uint64 { + return uint64(uint32(r.Eip)); +} + +func (r *PtraceRegs) SetPC(pc uint64) { + r.Eip = int32(pc); +} |