Commit f56e6fd7 authored by Russ Cox's avatar Russ Cox

make debug/proc "build" on more architectures

R=austin
DELTA=17  (0 added, 16 deleted, 1 changed)
OCL=34213
CL=34218
parent 26464171
......@@ -7,7 +7,7 @@ include $(GOROOT)/src/Make.$(GOARCH)
TARG=ptrace
GOFILES=\
proc.go\
proc_linux.go\
proc_$(GOOS).go\
regs_$(GOOS)_$(GOARCH).go\
include $(GOROOT)/src/Make.pkg
......@@ -4,8 +4,3 @@
package proc
import "syscall"
func newRegs(regs *syscall.PtraceRegs, setter func (*syscall.PtraceRegs) os.Error) Regs {
panic("newRegs unimplemented on darwin/386");
}
......@@ -3,9 +3,3 @@
// license that can be found in the LICENSE file.
package proc
import "syscall"
func newRegs(regs *syscall.PtraceRegs, setter func (*syscall.PtraceRegs) os.Error) Regs {
panic("newRegs unimplemented on darwin/amd64");
}
......@@ -4,8 +4,3 @@
package proc
import "syscall"
func newRegs(regs *syscall.PtraceRegs, setter func (*syscall.PtraceRegs) os.Error) Regs {
panic("newRegs unimplemented on linux/386");
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment