]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/dde/fbsd/lib/include/bsd/modified/i386/include/mutex.h
Inital import
[l4.git] / l4 / pkg / dde / fbsd / lib / include / bsd / modified / i386 / include / mutex.h
1 /*-
2  * Copyright (c) 1997 Berkeley Software Design, Inc. 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  * 3. Berkeley Software Design Inc's name may not be used to endorse or
13  *    promote products derived from this software without specific prior
14  *    written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  *      from BSDI $Id: mutex.h 23072 2005-11-14 10:55:16Z tf13 $
29  * $FreeBSD: src/sys/i386/include/mutex.h,v 1.36 2002/03/28 15:14:23 jhb Exp $
30  */
31
32 #ifndef _MACHINE_MUTEX_H_
33 #define _MACHINE_MUTEX_H_
34
35 #ifdef DDE_FBSD
36
37 #ifndef LOCORE
38
39 #ifdef _KERNEL
40
41 /* Global locks */
42 extern struct mtx       clock_lock;
43
44 #endif  /* _KERNEL */
45
46 #else   /* !LOCORE */
47
48 /*
49  * Simple assembly macros to get and release mutexes.
50  *
51  * Note: All of these macros accept a "flags" argument and are analoguous
52  *       to the mtx_lock_flags and mtx_unlock_flags general macros. If one
53  *       desires to not pass a flag, the value 0 may be passed as second
54  *       argument.
55  *
56  * XXX: We only have MTX_LOCK_SPIN and MTX_UNLOCK_SPIN for now, since that's
57  *      all we use right now. We should add MTX_LOCK and MTX_UNLOCK (for sleep
58  *      locks) in the near future, however.
59  */
60 #define MTX_LOCK_SPIN(lck, flags)                                       \
61         pushl $0 ;                                                      \
62         pushl $0 ;                                                      \
63         pushl $flags ;                                                  \
64         pushl $lck ;                                                    \
65         call _mtx_lock_spin_flags ;                                     \
66         addl $0x10, %esp ;                                              \
67
68 #define MTX_UNLOCK_SPIN(lck)                                            \
69         pushl $0 ;                                                      \
70         pushl $0 ;                                                      \
71         pushl $0 ;                                                      \
72         pushl $lck ;                                                    \
73         call _mtx_unlock_spin_flags ;                                   \
74         addl $0x10, %esp ;                                              \
75
76 #endif  /* !LOCORE */
77 #endif // DDE_FBSD
78 #endif  /* __MACHINE_MUTEX_H */