Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/lib/libc/arch/vax/sys Pull up rev. 1.2 (approved by tho...



details:   https://anonhg.NetBSD.org/src/rev/f6724ce1ae0b
branches:  netbsd-1-5
changeset: 489193:f6724ce1ae0b
user:      kleink <kleink%NetBSD.org@localhost>
date:      Tue Aug 22 07:36:44 2000 +0000

description:
Pull up rev. 1.2 (approved by thorpej):
Add internal names for brk(), sbrk() and fork().

diffstat:

 lib/libc/arch/vax/sys/fork.S |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r baf1ab9f4c71 -r f6724ce1ae0b lib/libc/arch/vax/sys/fork.S
--- a/lib/libc/arch/vax/sys/fork.S      Tue Aug 22 07:35:44 2000 +0000
+++ b/lib/libc/arch/vax/sys/fork.S      Tue Aug 22 07:36:44 2000 +0000
@@ -33,12 +33,16 @@
 
 #if defined(SYSLIBC_SCCS) && !defined(lint)
        /* .asciz "@(#)fork.s   8.1 (Berkeley) 6/4/93" */
-       .asciz "$NetBSD: fork.S,v 1.1 1995/04/17 12:24:01 ragge Exp $"
+       .asciz "$NetBSD: fork.S,v 1.1.20.1 2000/08/22 07:36:44 kleink Exp $"
 #endif /* SYSLIBC_SCCS and not lint */
 
 #include "SYS.h"
 
-SYSCALL(fork)
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(fork, _fork)
+#endif
+
+_SYSCALL(_fork,fork)
        jlbc    r1,1f   # parent, since r1 == 0 in parent, 1 in child
        clrl    r0
 1:



Home | Main Index | Thread Index | Old Index