]> Cypherpunks repositories - gostls13.git/commit
src: Add support for 64-bit version of Plan 9
authorAkshat Kumar <seed@mail.nanosouffle.net>
Fri, 31 Aug 2012 17:21:13 +0000 (13:21 -0400)
committerRuss Cox <rsc@golang.org>
Fri, 31 Aug 2012 17:21:13 +0000 (13:21 -0400)
commita72bebf6e1a5eafd8347fb84e60155e2b9cdb6d7
tree074e2b4532069cae6bd44a96f9b04d4b9e7fc048
parent85ce3c724167f82793c0c2be0edf611c70cede49
src: Add support for 64-bit version of Plan 9

This set of changes extends the Plan 9 support
to include the AMD64 architecture and should
work on all versions of Plan 9.

R=golang-dev, rminnich, noah.evans, rsc, minux.ma, npe
CC=akskuma, golang-dev, jfflore, noah.evans
https://golang.org/cl/6479052
18 files changed:
include/plan9/amd64/u.h [new file with mode: 0644]
src/cmd/6l/pass.c
src/pkg/runtime/asm_amd64.s
src/pkg/runtime/defs_plan9_386.h
src/pkg/runtime/defs_plan9_amd64.h [new file with mode: 0644]
src/pkg/runtime/mem_plan9.c
src/pkg/runtime/os_plan9.h
src/pkg/runtime/rt0_plan9_amd64.s [new file with mode: 0644]
src/pkg/runtime/signal_plan9_amd64.c [new file with mode: 0644]
src/pkg/runtime/sys_plan9_amd64.s [new file with mode: 0644]
src/pkg/syscall/asm_plan9_amd64.s [new file with mode: 0644]
src/pkg/syscall/syscall_plan9.go
src/pkg/syscall/syscall_plan9_386.go
src/pkg/syscall/syscall_plan9_amd64.go [new file with mode: 0644]
src/pkg/syscall/zerrors_plan9_amd64.go [new file with mode: 0644]
src/pkg/syscall/zsyscall_plan9_amd64.go [new file with mode: 0644]
src/pkg/syscall/zsysnum_plan9_amd64.go [new file with mode: 0644]
src/pkg/syscall/ztypes_plan9_amd64.go [new file with mode: 0644]