Changeset 6845 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Feb 7, 2008 12:50:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
r5999 r6845 64 64 #include <asm/semaphore.h> 65 65 #include <linux/module.h> 66 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) 67 # include <linux/moduleparam.h> 68 #endif 69 #include <linux/vermagic.h> 66 70 #include <linux/kernel.h> 67 71 #include <linux/init.h> … … 80 84 #include <linux/interrupt.h> 81 85 #include <linux/completion.h> 86 #include <linux/compiler.h> 87 #ifndef HAVE_UNLOCKED_IOCTL /* linux/fs.h defines this */ 88 # include <linux/smp_lock.h> 89 #endif 82 90 /* For the shared folders module */ 83 91 #include <linux/vmalloc.h> … … 227 235 #undef bool 228 236 229 #endif 230 237 /* 238 * There are post-2.6.24 kernels (confusingly with unchanged version number) 239 * which eliminate macros which were marked as deprecated. 240 */ 241 #ifndef __attribute_used__ 242 #define __attribute_used__ __used 243 #endif 244 245 #endif 246
Note:
See TracChangeset
for help on using the changeset viewer.