summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1999-12-31 04:28:52 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1999-12-31 04:28:52 +0000
commit64fe71e301e9ef786dd28f6b249683fc56404bdd (patch)
treed1250d5923fbd23c1cd50aec7f6429c54dcb34b7 /lib
parent07a79d966bc9dfb3b4eba73554e72ba6a9fd0894 (diff)
SYSLIBC_SCCS
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/arch/hppa/sys/Ovfork.S8
-rw-r--r--lib/libc/arch/hppa/sys/brk.S8
-rw-r--r--lib/libc/arch/hppa/sys/exect.S39
-rw-r--r--lib/libc/arch/hppa/sys/fork.S8
-rw-r--r--lib/libc/arch/hppa/sys/sbrk.S8
-rw-r--r--lib/libc/arch/hppa/sys/sigpending.S8
-rw-r--r--lib/libc/arch/hppa/sys/sigprocmask.S8
-rw-r--r--lib/libc/arch/hppa/sys/sigreturn.S39
-rw-r--r--lib/libc/arch/hppa/sys/sigsuspend.S8
-rw-r--r--lib/libc/arch/hppa/sys/syscall.S39
10 files changed, 166 insertions, 7 deletions
diff --git a/lib/libc/arch/hppa/sys/Ovfork.S b/lib/libc/arch/hppa/sys/Ovfork.S
index fe252d340b1..6a8fbbff1f7 100644
--- a/lib/libc/arch/hppa/sys/Ovfork.S
+++ b/lib/libc/arch/hppa/sys/Ovfork.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: Ovfork.S,v 1.2 1999/12/31 04:05:42 mickey Exp $ */
+/* $OpenBSD: Ovfork.S,v 1.3 1999/12/31 04:28:50 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -33,6 +33,12 @@
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: Ovfork.S,v 1.3 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
ENTRY(vfork)
SYSCALL(vfork)
ldo -1(arg1), arg1
diff --git a/lib/libc/arch/hppa/sys/brk.S b/lib/libc/arch/hppa/sys/brk.S
index 0e9a765b857..0e1b513bfdd 100644
--- a/lib/libc/arch/hppa/sys/brk.S
+++ b/lib/libc/arch/hppa/sys/brk.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: brk.S,v 1.2 1999/12/31 02:50:42 mickey Exp $ */
+/* $OpenBSD: brk.S,v 1.3 1999/12/31 04:28:50 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -33,6 +33,12 @@
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: brk.S,v 1.3 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
.import curbrk, data
.import end, data
diff --git a/lib/libc/arch/hppa/sys/exect.S b/lib/libc/arch/hppa/sys/exect.S
index 4a30ed113cb..e6cafe41d01 100644
--- a/lib/libc/arch/hppa/sys/exect.S
+++ b/lib/libc/arch/hppa/sys/exect.S
@@ -1,5 +1,44 @@
+/* $OpenBSD: exect.S,v 1.3 1999/12/31 04:28:50 mickey Exp $ */
+
+/*
+ * Copyright (c) 1999 Michael Shalayeff
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Michael Shalayeff.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: exect.S,v 1.3 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
/* we do no tracing yet */
PSEUDO(exect,execve)
diff --git a/lib/libc/arch/hppa/sys/fork.S b/lib/libc/arch/hppa/sys/fork.S
index 8b3fb13f750..22bebccf8fb 100644
--- a/lib/libc/arch/hppa/sys/fork.S
+++ b/lib/libc/arch/hppa/sys/fork.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: fork.S,v 1.2 1999/12/31 02:59:02 mickey Exp $ */
+/* $OpenBSD: fork.S,v 1.3 1999/12/31 04:28:50 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -33,6 +33,12 @@
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: fork.S,v 1.3 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
ENTRY(fork)
SYSCALL(fork)
ldo -1(arg1), arg1
diff --git a/lib/libc/arch/hppa/sys/sbrk.S b/lib/libc/arch/hppa/sys/sbrk.S
index 1871d72da90..d33bdb048c2 100644
--- a/lib/libc/arch/hppa/sys/sbrk.S
+++ b/lib/libc/arch/hppa/sys/sbrk.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: sbrk.S,v 1.2 1999/12/31 03:06:49 mickey Exp $ */
+/* $OpenBSD: sbrk.S,v 1.3 1999/12/31 04:28:50 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -33,6 +33,12 @@
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: sbrk.S,v 1.3 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
.import end, data
.space $PRIVATE$
diff --git a/lib/libc/arch/hppa/sys/sigpending.S b/lib/libc/arch/hppa/sys/sigpending.S
index 70dddbb2b34..a94ec62a039 100644
--- a/lib/libc/arch/hppa/sys/sigpending.S
+++ b/lib/libc/arch/hppa/sys/sigpending.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: sigpending.S,v 1.2 1999/12/31 03:14:50 mickey Exp $ */
+/* $OpenBSD: sigpending.S,v 1.3 1999/12/31 04:28:50 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -33,6 +33,12 @@
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: sigpending.S,v 1.3 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
ENTRY(sigpending)
SYSCALL(sigpending)
ldw HPPA_FRAME_ARG(0)(sp), t1
diff --git a/lib/libc/arch/hppa/sys/sigprocmask.S b/lib/libc/arch/hppa/sys/sigprocmask.S
index 4e252ae7ee1..2f4ee722030 100644
--- a/lib/libc/arch/hppa/sys/sigprocmask.S
+++ b/lib/libc/arch/hppa/sys/sigprocmask.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: sigprocmask.S,v 1.2 1999/12/31 03:54:50 mickey Exp $ */
+/* $OpenBSD: sigprocmask.S,v 1.3 1999/12/31 04:28:50 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -33,6 +33,12 @@
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: sigprocmask.S,v 1.3 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
ENTRY(sigprocmask)
comb,<>,n r0, arg1, sigprogmask$nblock
diff --git a/lib/libc/arch/hppa/sys/sigreturn.S b/lib/libc/arch/hppa/sys/sigreturn.S
index 015beebd0cb..84fcee16bc5 100644
--- a/lib/libc/arch/hppa/sys/sigreturn.S
+++ b/lib/libc/arch/hppa/sys/sigreturn.S
@@ -1,5 +1,44 @@
+/* $OpenBSD: sigreturn.S,v 1.2 1999/12/31 04:28:50 mickey Exp $ */
+
+/*
+ * Copyright (c) 1999 Michael Shalayeff
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Michael Shalayeff.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: sigreturn.S,v 1.2 1999/12/31 04:28:50 mickey Exp $"
+#endif
+
RSYSCALL(sigreturn)
.end
diff --git a/lib/libc/arch/hppa/sys/sigsuspend.S b/lib/libc/arch/hppa/sys/sigsuspend.S
index 44b09d5e761..9b658293ce6 100644
--- a/lib/libc/arch/hppa/sys/sigsuspend.S
+++ b/lib/libc/arch/hppa/sys/sigsuspend.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: sigsuspend.S,v 1.2 1999/12/31 04:04:04 mickey Exp $ */
+/* $OpenBSD: sigsuspend.S,v 1.3 1999/12/31 04:28:51 mickey Exp $ */
/*
* Copyright (c) 1999 Michael Shalayeff
@@ -33,6 +33,12 @@
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: sigsuspend.S,v 1.3 1999/12/31 04:28:51 mickey Exp $"
+#endif
+
ENTRY(sigsuspend)
ldw 0(arg0), arg0
stw arg0, HPPA_FRAME_ARG(0)(sp)
diff --git a/lib/libc/arch/hppa/sys/syscall.S b/lib/libc/arch/hppa/sys/syscall.S
index abdc7cfbf5c..a0d032d5d20 100644
--- a/lib/libc/arch/hppa/sys/syscall.S
+++ b/lib/libc/arch/hppa/sys/syscall.S
@@ -1,5 +1,44 @@
+/* $OpenBSD: syscall.S,v 1.2 1999/12/31 04:28:51 mickey Exp $ */
+
+/*
+ * Copyright (c) 1999 Michael Shalayeff
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Michael Shalayeff.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
#include "SYS.h"
+#ifdef SYSLIBC_SCCS
+ .space .text
+ .subspa $code$
+ .asciz "$OpenBSD: syscall.S,v 1.2 1999/12/31 04:28:51 mickey Exp $"
+#endif
+
RSYSCALL(syscall)
.end