summaryrefslogtreecommitdiffstats
path: root/sys/i386/include/frame.h
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2015-07-10 09:15:06 +0000
committerkib <kib@FreeBSD.org>2015-07-10 09:15:06 +0000
commita4e4a26325ac61419a28d06fb279232cc0aebe73 (patch)
tree1f568ae3ca7c9653fc567ef4ad14907f477233f0 /sys/i386/include/frame.h
parent8b3d38af034be8c0ee00735582dbe625ce9ba195 (diff)
downloadFreeBSD-src-a4e4a26325ac61419a28d06fb279232cc0aebe73.zip
FreeBSD-src-a4e4a26325ac61419a28d06fb279232cc0aebe73.tar.gz
Duplicate the copyright from the i386/i386/machdep.c into
i386/include/frame.h after a code was moved from machdep.c to frame.h in r284925. Use include guards style similar to other guards. Noted by: bde Sponsored by: The FreeBSD Foundation MFC after: 1 week
Diffstat (limited to 'sys/i386/include/frame.h')
-rw-r--r--sys/i386/include/frame.h42
1 files changed, 36 insertions, 6 deletions
diff --git a/sys/i386/include/frame.h b/sys/i386/include/frame.h
index 150ea20..b006c1e 100644
--- a/sys/i386/include/frame.h
+++ b/sys/i386/include/frame.h
@@ -1,14 +1,44 @@
/*-
- * This file is in the public domain.
+ * Copyright (c) 2003 Peter Wemm.
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * William Jolitz.
+ *
+ * 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.
+ * 4. Neither the name of the University nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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 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.
+ *
+ * $FreeBSD$
*/
-/* $FreeBSD$ */
-#include <x86/frame.h>
+#ifndef _I386_FRAME_H_
+#define _I386_FRAME_H_
-#ifndef __I386_FRAME_H__
-#define __i386_FRAME_H__
+#include <x86/frame.h>
#define CS_SECURE(cs) (ISPL(cs) == SEL_UPL)
#define EFL_SECURE(ef, oef) ((((ef) ^ (oef)) & ~PSL_USERCHANGE) == 0)
-#endif
+#endif /* _I386_FRAME_H_ */
OpenPOWER on IntegriCloud