fef5fad553256dafa1fc686daa7e1a909a019e23
[dragonfly.git] / sys / i386 / include / thread.h
1 /*
2  * Copyright (c) 2003 Matt Dillon <dillon@backplane.com>, All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  *      Machine independant code should not directly include this file.
26  *
27  * $DragonFly: src/sys/i386/include/Attic/thread.h,v 1.4 2003/07/08 06:27:27 dillon Exp $
28  */
29
30 #ifndef _MACHINE_THREAD_H_
31 #define _MACHINE_THREAD_H_
32
33 #ifndef _SYS_GLOBALDATA_H_
34 #include <sys/globaldata.h>     /* struct globaldata */
35 #endif
36
37 struct md_thread {
38     unsigned int        mtd_cpl;
39 };
40
41 #ifdef _KERNEL
42
43 #define td_cpl  td_mach.mtd_cpl
44
45 /*
46  * mycpu() retrieves the base of the current cpu's globaldata structure.
47  * Note that it is *NOT* volatile, meaning that the value may be cached by
48  * GCC.  We have to force a dummy memory reference so gcc does not cache
49  * the gd pointer across a procedure call (which might block and cause us
50  * to wakeup on a different cpu).
51  *
52  * Also note that in TurtleBSD a thread can be preempted, but it cannot
53  * move to another cpu preemptively so the 'gd' pointer is good until you
54  * block.
55  */
56
57 struct globaldata;
58
59 extern int __mycpu__dummy;
60
61 static __inline
62 struct globaldata *
63 _get_mycpu(void)
64 {
65     struct globaldata *gd;
66
67     __asm ("movl %%fs:globaldata,%0" : "=r" (gd) : "m"(__mycpu__dummy));
68     return(gd);
69 }
70
71 #define mycpu   _get_mycpu()
72
73 /*
74  * note: curthread is never NULL, but curproc can be.  Also note that
75  * in Turtle, the current pcb is stored in the thread structure.
76  */
77 #define curthread       mycpu->gd_curthread
78 #define curproc         curthread->td_proc
79
80 #endif  /* _KERNEL */
81
82 #endif  /* !_MACHINE_THREAD_H_ */