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/i386/sys Pull up rev. 1.5 (approved by th...
details: https://anonhg.NetBSD.org/src/rev/54c140c5df0e
branches: netbsd-1-5
changeset: 489583:54c140c5df0e
user: kleink <kleink%NetBSD.org@localhost>
date: Fri Sep 29 09:05:04 2000 +0000
description:
Pull up rev. 1.5 (approved by thorpej):
Add internal name for pipe().
diffstat:
lib/libc/arch/i386/sys/pipe.S | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r 39558ce1bfd8 -r 54c140c5df0e lib/libc/arch/i386/sys/pipe.S
--- a/lib/libc/arch/i386/sys/pipe.S Fri Sep 29 09:04:46 2000 +0000
+++ b/lib/libc/arch/i386/sys/pipe.S Fri Sep 29 09:05:04 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pipe.S,v 1.4 1997/07/16 14:37:30 christos Exp $ */
+/* $NetBSD: pipe.S,v 1.4.12.1 2000/09/29 09:05:04 kleink Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -40,12 +40,16 @@
#include <machine/asm.h>
#if defined(SYSLIBC_SCCS) && !defined(lint)
- RCSID("$NetBSD: pipe.S,v 1.4 1997/07/16 14:37:30 christos Exp $")
+ RCSID("$NetBSD: pipe.S,v 1.4.12.1 2000/09/29 09:05:04 kleink Exp $")
#endif /* SYSLIBC_SCCS and not lint */
#include "SYS.h"
-SYSCALL(pipe)
+#ifdef WEAK_ALIAS
+WEAK_ALIAS(pipe, _pipe)
+#endif
+
+_SYSCALL(_pipe,pipe)
movl 4(%esp),%ecx
movl %eax,(%ecx)
movl %edx,4(%ecx)
Home |
Main Index |
Thread Index |
Old Index