summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2003-11-08 04:39:22 +0000
committerpeter <peter@FreeBSD.org>2003-11-08 04:39:22 +0000
commit2edc2f597be63a2eb136a348878d48d05cd9fb11 (patch)
tree45ad8329bd70090e465c39cf91e563876cb035c7 /sys
parentc32b37e0ed347935853a6f7eb1b28051e1208c4a (diff)
downloadFreeBSD-src-2edc2f597be63a2eb136a348878d48d05cd9fb11.zip
FreeBSD-src-2edc2f597be63a2eb136a348878d48d05cd9fb11.tar.gz
Update the graffiti.
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/cpu_switch.S1
-rw-r--r--sys/amd64/amd64/pmap.c2
-rw-r--r--sys/amd64/amd64/support.S1
-rw-r--r--sys/amd64/amd64/sys_machdep.c1
-rw-r--r--sys/amd64/include/cpufunc.h1
-rw-r--r--sys/amd64/include/frame.h1
-rw-r--r--sys/amd64/include/ieeefp.h1
-rw-r--r--sys/amd64/include/pcb.h7
-rw-r--r--sys/amd64/include/pmap.h1
-rw-r--r--sys/amd64/include/reg.h1
-rw-r--r--sys/amd64/include/signal.h1
-rw-r--r--sys/amd64/include/ucontext.h1
-rw-r--r--sys/amd64/include/vmparam.h2
13 files changed, 18 insertions, 3 deletions
diff --git a/sys/amd64/amd64/cpu_switch.S b/sys/amd64/amd64/cpu_switch.S
index 93c8fcf..56f0c84 100644
--- a/sys/amd64/amd64/cpu_switch.S
+++ b/sys/amd64/amd64/cpu_switch.S
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c
index f9a73f3..4e4c124 100644
--- a/sys/amd64/amd64/pmap.c
+++ b/sys/amd64/amd64/pmap.c
@@ -5,6 +5,8 @@
* All rights reserved.
* Copyright (c) 1994 David Greenman
* All rights reserved.
+ * Copyright (c) 2003 Peter Wemm
+ * All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* the Systems Programming Group of the University of Utah Computer
diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S
index 0d983f7..94d7bba 100644
--- a/sys/amd64/amd64/support.S
+++ b/sys/amd64/amd64/support.S
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1993 The Regents of the University of California.
* All rights reserved.
*
diff --git a/sys/amd64/amd64/sys_machdep.c b/sys/amd64/amd64/sys_machdep.c
index e5593e0..8fed5a3 100644
--- a/sys/amd64/amd64/sys_machdep.c
+++ b/sys/amd64/amd64/sys_machdep.c
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
diff --git a/sys/amd64/include/cpufunc.h b/sys/amd64/include/cpufunc.h
index 5d4c0dc..f060785 100644
--- a/sys/amd64/include/cpufunc.h
+++ b/sys/amd64/include/cpufunc.h
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1993 The Regents of the University of California.
* All rights reserved.
*
diff --git a/sys/amd64/include/frame.h b/sys/amd64/include/frame.h
index e6cbe85..b329a8d 100644
--- a/sys/amd64/include/frame.h
+++ b/sys/amd64/include/frame.h
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
diff --git a/sys/amd64/include/ieeefp.h b/sys/amd64/include/ieeefp.h
index c28c7cd..214f3b5 100644
--- a/sys/amd64/include/ieeefp.h
+++ b/sys/amd64/include/ieeefp.h
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1990 Andrew Moore, Talke Studio
* All rights reserved.
*
diff --git a/sys/amd64/include/pcb.h b/sys/amd64/include/pcb.h
index 9e638e4..1d909cd 100644
--- a/sys/amd64/include/pcb.h
+++ b/sys/amd64/include/pcb.h
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
@@ -37,8 +38,8 @@
* $FreeBSD$
*/
-#ifndef _I386_PCB_H_
-#define _I386_PCB_H_
+#ifndef _AMD64_PCB_H_
+#define _AMD64_PCB_H_
/*
* AMD64 process control block
@@ -76,4 +77,4 @@ struct pcb {
void savectx(struct pcb *);
#endif
-#endif /* _I386_PCB_H_ */
+#endif /* _AMD64_PCB_H_ */
diff --git a/sys/amd64/include/pmap.h b/sys/amd64/include/pmap.h
index cc4608b..77a25a4 100644
--- a/sys/amd64/include/pmap.h
+++ b/sys/amd64/include/pmap.h
@@ -1,4 +1,5 @@
/*
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1991 Regents of the University of California.
* All rights reserved.
*
diff --git a/sys/amd64/include/reg.h b/sys/amd64/include/reg.h
index a5a8cf6..73b52d7 100644
--- a/sys/amd64/include/reg.h
+++ b/sys/amd64/include/reg.h
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
diff --git a/sys/amd64/include/signal.h b/sys/amd64/include/signal.h
index a98d8fb..e7ea46a 100644
--- a/sys/amd64/include/signal.h
+++ b/sys/amd64/include/signal.h
@@ -1,4 +1,5 @@
/*
+ * Copyright (c) 2003 Peter Wemm.
* Copyright (c) 1986, 1989, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/amd64/include/ucontext.h b/sys/amd64/include/ucontext.h
index 43bd6fb..5c13803 100644
--- a/sys/amd64/include/ucontext.h
+++ b/sys/amd64/include/ucontext.h
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2003 Peter Wemm
* Copyright (c) 1999 Marcel Moolenaar
* All rights reserved.
*
diff --git a/sys/amd64/include/vmparam.h b/sys/amd64/include/vmparam.h
index d72b599..d90dd78 100644
--- a/sys/amd64/include/vmparam.h
+++ b/sys/amd64/include/vmparam.h
@@ -3,6 +3,8 @@
* All rights reserved.
* Copyright (c) 1994 John S. Dyson
* All rights reserved.
+ * Copyright (c) 2003 Peter Wemm
+ * All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* William Jolitz.
OpenPOWER on IntegriCloud