- Timestamp:
- Jul 9, 2007 2:59:25 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDRVIOC.h
r3393 r3512 71 71 # define SUP_CTL_CODE_FAST(Function) ((unsigned char)(Function)) 72 72 73 #elif defined(__LINUX__) || defined(__L4__)73 #elif defined(__LINUX__) 74 74 # ifdef __X86__ /** @todo With the next major version change, drop this branch. */ 75 75 # define SUP_CTL_CODE(Function) \ … … 87 87 # endif 88 88 # endif 89 90 #elif defined(__L4__) 91 # define SUP_CTL_CODE(Function) \ 92 ( (3U << 30) | ((0x22) << 8) | ((Function) | SUP_IOCTL_FLAG) | (sizeof(SUPDRVIOCTLDATA) << 16) ) 93 # define SUP_CTL_CODE_FAST(Function) \ 94 ( (3U << 30) | ((0x22) << 8) | ((Function) | SUP_IOCTL_FLAG) | (0 << 16) ) 89 95 90 96 #else /* BSD */
Note:
See TracChangeset
for help on using the changeset viewer.