Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / include / linux / spinlock_types.h
1 #ifndef __LINUX_SPINLOCK_TYPES_H
2 #define __LINUX_SPINLOCK_TYPES_H
3
4 /*
5  * include/linux/spinlock_types.h - generic spinlock type definitions
6  *                                  and initializers
7  *
8  * portions Copyright 2005, Red Hat, Inc., Ingo Molnar
9  * Released under the General Public License (GPL).
10  */
11
12 #include <linux/spinlock_types_raw.h>
13
14 #ifndef CONFIG_PREEMPT_RT_FULL
15 # include <linux/spinlock_types_nort.h>
16 # include <linux/rwlock_types.h>
17 #else
18 # include <linux/rtmutex.h>
19 # include <linux/spinlock_types_rt.h>
20 # include <linux/rwlock_types_rt.h>
21 #endif
22
23 #endif /* __LINUX_SPINLOCK_TYPES_H */