Remove all remaining SPL code. Replace the mtd_cpl field in the machine
[dragonfly.git] / sys / platform / pc32 / include / thread.h
1 /*
2  * Copyright (c) 2003,2004 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  *      Machine independant code should not directly include this file.
35  *
36  * $DragonFly: src/sys/platform/pc32/include/thread.h,v 1.13 2005/06/16 21:12:46 dillon Exp $
37  */
38
39 #ifndef _MACHINE_THREAD_H_
40 #define _MACHINE_THREAD_H_
41
42 #include "segments.h"
43
44 union savefpu;
45
46 struct md_thread {
47     unsigned int        mtd_unused;     /* used to be mtd_cpl */
48     union savefpu       *mtd_savefpu;
49     struct segment_descriptor mtd_tls[NGTLS];
50 };
51
52 #ifdef _KERNEL
53
54 #define td_savefpu      td_mach.mtd_savefpu
55 #define td_tls          td_mach.mtd_tls
56
57 /*
58  * mycpu() retrieves the base of the current cpu's globaldata structure.
59  * Note that it is *NOT* volatile, meaning that the value may be cached by
60  * GCC.  We have to force a dummy memory reference so gcc does not cache
61  * the gd pointer across a procedure call (which might block and cause us
62  * to wakeup on a different cpu).
63  *
64  * Also note that in DragonFly a thread can be preempted, but only by an
65  * interrupt thread and the original thread will resume after the 
66  * interrupt thread finishes or blocks.  A thread cannot move to another
67  * cpu preemptively or at all, in fact, while you are in the kernel, even
68  * if you block.
69  */
70
71 struct globaldata;
72
73 extern int __mycpu__dummy;
74
75 static __inline
76 struct globaldata *
77 _get_mycpu(void)
78 {
79     struct globaldata *gd;
80
81     __asm ("movl %%fs:globaldata,%0" : "=r" (gd) : "m"(__mycpu__dummy));
82     return(gd);
83 }
84
85 #define mycpu   _get_mycpu()
86 #define mycpuid _get_mycpu()->gd_cpuid
87
88 /*
89  * note: curthread is never NULL, but curproc can be.  Also note that
90  * that only processes really use the PCB.  Threads fill in some fields
91  * but mostly store contextual data on the stack and do not use (much of)
92  * the PCB.
93  */
94 #define curthread       mycpu->gd_curthread
95 #define curproc         curthread->td_proc
96
97 #endif  /* _KERNEL */
98
99 #endif  /* !_MACHINE_THREAD_H_ */