summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2003-11-08 04:39:22 +0000
committerPeter Wemm <peter@FreeBSD.org>2003-11-08 04:39:22 +0000
commitfcfe57d64080fe861c8dc9d41bc675338ff4ad9a (patch)
tree45ad8329bd70090e465c39cf91e563876cb035c7
parent398dbb11d8e8dd7487e17616bd8b2603f8d02994 (diff)
Notes
-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 93c8fcf202bd0..56f0c84803ded 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 f9a73f35059a5..4e4c124d23170 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 0d983f7947f18..94d7bbada7f70 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 e5593e0983ed1..8fed5a36254b8 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 5d4c0dce25fb4..f0607855a1f55 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 e6cbe852fc5b9..b329a8dafa7be 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 c28c7cdf99ea1..214f3b5616718 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 9e638e437b1f7..1d909cdf33e33 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 cc4608bba4c11..77a25a4b25066 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 a5a8cf6469191..73b52d7b1aa67 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 a98d8fb40485e..e7ea46a42c508 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 43bd6fb05589b..5c1380336321d 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 d72b5990c086a..d90dd78bbbf3d 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.