summaryrefslogtreecommitdiff
path: root/sys/arch/m88k
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2011-10-27 04:01:19 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2011-10-27 04:01:19 +0000
commitcb1ac8da087cd30d732c79671756af973e62b48f (patch)
tree3b7af8ba6a971c53699f5623476ecbca7d004f32 /sys/arch/m88k
parentfecc8a0c15b3d3d1597ad929adaf8345d01a1cc2 (diff)
Specify the TLS variant for each platform.
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r--sys/arch/m88k/include/tcb.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/sys/arch/m88k/include/tcb.h b/sys/arch/m88k/include/tcb.h
new file mode 100644
index 00000000000..03109f8a103
--- /dev/null
+++ b/sys/arch/m88k/include/tcb.h
@@ -0,0 +1,33 @@
+/* $OpenBSD: tcb.h,v 1.1 2011/10/27 04:01:17 guenther Exp $ */
+
+/*
+ * Copyright (c) 2011 Philip Guenther <guenther@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifndef _MACHINE_TCB_H_
+#define _MACHINE_TCB_H_
+
+#ifdef _KERNEL
+
+#error "not yet"
+
+#else /* _KERNEL */
+
+/* Not ELF, so for now use a big TCB to save a memory reference for errno */
+#define TLS_VARIANT 2
+
+#endif /* _KERNEL */
+
+#endif /* _MACHINE_TCB_H_ */