diff options
author | 2002-10-29 01:52:46 +0000 | |
---|---|---|
committer | 2002-10-29 01:52:46 +0000 | |
commit | 08ddaa680d6bc07a9a437bb999e35657d9c90a57 (patch) | |
tree | 2462d40a58f371ea8709e611013f2742efc4af06 | |
parent | No need to free the address space in exit1(), we'll do that in the reaper. (diff) | |
download | wireguard-openbsd-08ddaa680d6bc07a9a437bb999e35657d9c90a57.tar.xz wireguard-openbsd-08ddaa680d6bc07a9a437bb999e35657d9c90a57.zip |
Remove some unused globls
-rw-r--r-- | sys/arch/i386/i386/locore.s | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index 1d7c993051c..09522831414 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.66 2002/07/24 23:20:11 mickey Exp $ */ +/* $OpenBSD: locore.s,v 1.67 2002/10/29 01:52:46 art Exp $ */ /* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */ /*- @@ -1829,8 +1829,7 @@ switch_return: * Switch to proc0's saved context and deallocate the address space and kernel * stack for p. Then jump into cpu_switch(), as if we were in proc0 all along. */ - .globl _C_LABEL(proc0),_C_LABEL(uvmspace_free),_C_LABEL(kernel_map) - .globl _C_LABEL(uvm_km_free),_C_LABEL(tss_free) + .globl _C_LABEL(proc0) ENTRY(switch_exit) movl 4(%esp),%edi # old process movl $_C_LABEL(proc0),%ebx |