summaryrefslogtreecommitdiff
path: root/libgo/syscalls/syscall_linux_386.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/syscalls/syscall_linux_386.go')
-rw-r--r--libgo/syscalls/syscall_linux_386.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/libgo/syscalls/syscall_linux_386.go b/libgo/syscalls/syscall_linux_386.go
new file mode 100644
index 000000000..aca9c7bf5
--- /dev/null
+++ b/libgo/syscalls/syscall_linux_386.go
@@ -0,0 +1,15 @@
+// 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
+
+func (r *PtraceRegs) PC() uint64 {
+ return uint64(uint32(r.Eip));
+}
+
+func (r *PtraceRegs) SetPC(pc uint64) {
+ r.Eip = int32(pc);
+}