summaryrefslogtreecommitdiff
path: root/src/pkg/syscall/asm_freebsd_386.s
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-01-25 18:52:55 -0800
committerRuss Cox <rsc@golang.org>2010-01-25 18:52:55 -0800
commitab9fc72814710229b0118e302bbceae3e9260926 (patch)
treee8137325f4384b3cd062ab7f2700db20c32efb4c /src/pkg/syscall/asm_freebsd_386.s
parent3ed83878d067bfb4eaa5ba5390bcde974382000f (diff)
downloadgolang-ab9fc72814710229b0118e302bbceae3e9260926.tar.gz
in C and asm, replace pkg·name with ·name
(eliminate assumption of package global name space, make code easier to move between packages). R=r CC=golang-dev http://codereview.appspot.com/194072
Diffstat (limited to 'src/pkg/syscall/asm_freebsd_386.s')
-rw-r--r--src/pkg/syscall/asm_freebsd_386.s6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pkg/syscall/asm_freebsd_386.s b/src/pkg/syscall/asm_freebsd_386.s
index 3ca582f7d..c652dcbd0 100644
--- a/src/pkg/syscall/asm_freebsd_386.s
+++ b/src/pkg/syscall/asm_freebsd_386.s
@@ -10,7 +10,7 @@
// func Syscall6(trap int32, a1, a2, a3, a4, a5, a6 int32) (r1, r2, err int32);
// Trap # in AX, args on stack above caller pc.
-TEXT syscall·Syscall(SB),7,$0
+TEXT ·Syscall(SB),7,$0
CALL runtime·entersyscall(SB)
MOVL 4(SP), AX // syscall entry
// slide args down on top of system call number
@@ -34,7 +34,7 @@ ok:
CALL runtime·exitsyscall(SB)
RET
-TEXT syscall·Syscall6(SB),7,$0
+TEXT ·Syscall6(SB),7,$0
CALL runtime·entersyscall(SB)
MOVL 4(SP), AX // syscall entry
// slide args down on top of system call number
@@ -61,7 +61,7 @@ ok6:
CALL runtime·exitsyscall(SB)
RET
-TEXT syscall·RawSyscall(SB),7,$0
+TEXT ·RawSyscall(SB),7,$0
MOVL 4(SP), AX // syscall entry
// slide args down on top of system call number
LEAL 8(SP), SI