diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-15 21:17:59 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-15 21:17:59 +0000 |
commit | 1b12a0abfe8332e98f4c77639c7a8fdf2dcc4166 (patch) | |
tree | 67c871bb1dc7ca0414daf66596857c4042af9b7a | |
parent | dde959e18db5572801d46ad133c5e32be2c37c6c (diff) | |
download | FreeBSD-src-1b12a0abfe8332e98f4c77639c7a8fdf2dcc4166.zip FreeBSD-src-1b12a0abfe8332e98f4c77639c7a8fdf2dcc4166.tar.gz |
Our default syscall.S is identical to what was explicitly being done for
Alpha and IA-64. So there is no need for special handling.
-rw-r--r-- | lib/libc/alpha/sys/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/alpha/sys/syscall.S | 32 | ||||
-rw-r--r-- | lib/libc/ia64/sys/Makefile.inc | 2 | ||||
-rw-r--r-- | lib/libc/ia64/sys/syscall.S | 33 |
4 files changed, 2 insertions, 67 deletions
diff --git a/lib/libc/alpha/sys/Makefile.inc b/lib/libc/alpha/sys/Makefile.inc index f6a1490..bcd5231 100644 --- a/lib/libc/alpha/sys/Makefile.inc +++ b/lib/libc/alpha/sys/Makefile.inc @@ -1,7 +1,7 @@ # $FreeBSD$ MDASM+= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S ptrace.S \ - sbrk.S setlogin.S sigreturn.S syscall.S + sbrk.S setlogin.S sigreturn.S # Don't generate default code for these syscalls: NOASM= __semctl.o break.o exit.o ftruncate.o getdomainname.o getlogin.o \ diff --git a/lib/libc/alpha/sys/syscall.S b/lib/libc/alpha/sys/syscall.S deleted file mode 100644 index 2ccf4d3..0000000 --- a/lib/libc/alpha/sys/syscall.S +++ /dev/null @@ -1,32 +0,0 @@ -/* $NetBSD: syscall.S,v 1.1 1995/02/10 17:50:44 cgd Exp $ */ - -/* - * Copyright (c) 1994, 1995 Carnegie-Mellon University. - * All rights reserved. - * - * Author: Chris G. Demetriou - * - * Permission to use, copy, modify and distribute this software and - * its documentation is hereby granted, provided that both the copyright - * notice and this permission notice appear in all copies of the - * software, derivative works or modified versions, and any portions - * thereof, and that both notices appear in supporting documentation. - * - * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" - * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND - * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * - * Carnegie Mellon requests users of this software to return to - * - * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU - * School of Computer Science - * Carnegie Mellon University - * Pittsburgh PA 15213-3890 - * - * any improvements or extensions that they make and grant Carnegie the - * rights to redistribute these changes. - */ - -#include "SYS.h" - -RSYSCALL(syscall) diff --git a/lib/libc/ia64/sys/Makefile.inc b/lib/libc/ia64/sys/Makefile.inc index 7d9a6c6..fbbb8ba 100644 --- a/lib/libc/ia64/sys/Makefile.inc +++ b/lib/libc/ia64/sys/Makefile.inc @@ -1,7 +1,7 @@ # $FreeBSD$ MDASM+= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S ptrace.S \ - sbrk.S setlogin.S sigreturn.S syscall.S + sbrk.S setlogin.S sigreturn.S # Don't generate default code for these syscalls: NOASM= __semctl.o break.o exit.o ftruncate.o getdomainname.o getlogin.o \ diff --git a/lib/libc/ia64/sys/syscall.S b/lib/libc/ia64/sys/syscall.S deleted file mode 100644 index 8e071f4..0000000 --- a/lib/libc/ia64/sys/syscall.S +++ /dev/null @@ -1,33 +0,0 @@ -/* $FreeBSD$ */ -/* $NetBSD: syscall.S,v 1.1 1995/02/10 17:50:44 cgd Exp $ */ - -/* - * Copyright (c) 1994, 1995 Carnegie-Mellon University. - * All rights reserved. - * - * Author: Chris G. Demetriou - * - * Permission to use, copy, modify and distribute this software and - * its documentation is hereby granted, provided that both the copyright - * notice and this permission notice appear in all copies of the - * software, derivative works or modified versions, and any portions - * thereof, and that both notices appear in supporting documentation. - * - * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" - * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND - * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * - * Carnegie Mellon requests users of this software to return to - * - * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU - * School of Computer Science - * Carnegie Mellon University - * Pittsburgh PA 15213-3890 - * - * any improvements or extensions that they make and grant Carnegie the - * rights to redistribute these changes. - */ - -#include "SYS.h" - -RSYSCALL(syscall) |