diff options
author | marcel <marcel@FreeBSD.org> | 1999-10-12 09:38:57 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-10-12 09:38:57 +0000 |
commit | 70fb184d38878b5f151d06f677380faf8544fed0 (patch) | |
tree | 58d97d632dda87d897d515f8c2d7304a3012ea31 /lib | |
parent | 2b09beb7d9293043cf30dacb2c3aee61450fc946 (diff) | |
download | FreeBSD-src-70fb184d38878b5f151d06f677380faf8544fed0.zip FreeBSD-src-70fb184d38878b5f151d06f677380faf8544fed0.tar.gz |
Not needed now the syscall matches the prototype.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/alpha/sys/sigpending.S | 36 | ||||
-rw-r--r-- | lib/libc/alpha/sys/sigprocmask.S | 44 | ||||
-rw-r--r-- | lib/libc/alpha/sys/sigsuspend.S | 37 |
3 files changed, 0 insertions, 117 deletions
diff --git a/lib/libc/alpha/sys/sigpending.S b/lib/libc/alpha/sys/sigpending.S deleted file mode 100644 index 12a3772..0000000 --- a/lib/libc/alpha/sys/sigpending.S +++ /dev/null @@ -1,36 +0,0 @@ -/* $NetBSD: sigpending.S,v 1.1 1995/02/10 17:50:40 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" - -PSYSCALL(sigpending) - stl v0, 0(a0) - mov zero, v0 - RET -PEND(sigpending) diff --git a/lib/libc/alpha/sys/sigprocmask.S b/lib/libc/alpha/sys/sigprocmask.S deleted file mode 100644 index 2899b0f..0000000 --- a/lib/libc/alpha/sys/sigprocmask.S +++ /dev/null @@ -1,44 +0,0 @@ -/* $NetBSD: sigprocmask.S,v 1.2 1996/10/17 03:08:21 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" - -PLEAF(sigprocmask, 3) - mov a2, a5 /* safe */ - cmoveq a1, 1, a0 /* if set == NULL, how = SIG_BLOCK */ - beq a1, Ldoit /* and set = 0, and do it. */ - ldl a1, 0(a1) /* load the set from *set */ -Ldoit: CALLSYS_ERROR(sigprocmask) - beq a5, Lret /* if they don't want old mask, done */ - stl v0, 0(a5) /* otherwise, give it to them. */ -Lret: mov zero, v0 - RET - - PEND(sigprocmask) - diff --git a/lib/libc/alpha/sys/sigsuspend.S b/lib/libc/alpha/sys/sigsuspend.S deleted file mode 100644 index b351001..0000000 --- a/lib/libc/alpha/sys/sigsuspend.S +++ /dev/null @@ -1,37 +0,0 @@ -/* $NetBSD: sigsuspend.S,v 1.2 1996/10/17 03:08:22 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" - -PLEAF(sigsuspend, 1) - ldl a0, 0(a0) /* pass *mask instead of mask */ - CALLSYS_ERROR(sigsuspend) - mov zero, v0 /* shouldn't need; just in case... */ - RET -PEND(sigsuspend) |