]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/amd64/include/critical.h
netchild's mega-patch to isolate compiler dependencies into a central
[FreeBSD/FreeBSD.git] / sys / amd64 / include / critical.h
1 /*-
2  * Copyright (c) 2002 Matthew Dillon.  All Rights Reserved.
3  * Redistribution and use in source and binary forms, with or without
4  * modification, are permitted provided that the following conditions
5  * are met:
6  * 1. Redistributions of source code must retain the above copyright
7  *    notice, this list of conditions and the following disclaimer.
8  * 2. Redistributions in binary form must reproduce the above copyright
9  *    notice, this list of conditions and the following disclaimer in the
10  *    documentation and/or other materials provided with the distribution.
11  * 4. Neither the name of the University nor the names of its contributors
12  *    may be used to endorse or promote products derived from this software
13  *    without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
16  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
19  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
21  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * This file contains prototypes and high-level inlines related to
28  * machine-level critical function support:
29  *
30  *      cpu_critical_enter()            - inlined
31  *      cpu_critical_exit()             - inlined
32  *      cpu_critical_fork_exit()        - prototyped
33  *      related support functions residing
34  *      in <arch>/<arch>/critical.c     - prototyped
35  *
36  * $FreeBSD$
37  */
38
39 #ifndef _MACHINE_CRITICAL_H_
40 #define _MACHINE_CRITICAL_H_
41
42 __BEGIN_DECLS
43
44 /*
45  * Prototypes - see <arch>/<arch>/critical.c
46  */
47 void cpu_critical_fork_exit(void);
48
49 #ifdef  __CC_SUPPORTS___INLINE
50
51 /*
52  *      cpu_critical_enter:
53  *
54  *      This routine is called from critical_enter() on the 0->1 transition
55  *      of td_critnest, prior to it being incremented to 1.
56  */
57 static __inline void
58 cpu_critical_enter(struct thread *td)
59 {
60
61         td->td_md.md_savecrit = intr_disable();
62 }
63
64 /*
65  *      cpu_critical_exit:
66  *
67  *      This routine is called from critical_exit() on a 1->0 transition
68  *      of td_critnest, after it has been decremented to 0.  We are
69  *      exiting the last critical section.
70  */
71 static __inline void
72 cpu_critical_exit(struct thread *td)
73 {
74         intr_restore(td->td_md.md_savecrit);
75 }
76
77 #else /* !__CC_SUPPORTS___INLINE */
78
79 void cpu_critical_enter(struct thread *td);
80 void cpu_critical_exit(struct thread *td);
81
82 #endif  /* __CC_SUPPORTS___INLINE */
83
84 __END_DECLS
85
86 #endif /* !_MACHINE_CRITICAL_H_ */
87