Changeset 5893 in vbox for trunk/src/VBox/Additions/linux/module/hgcmcall.c
- Timestamp:
- Nov 30, 2007 2:21:05 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/hgcmcall.c
r4996 r5893 24 24 #include "vboxmod.h" 25 25 #include "waitcompat.h" 26 26 27 #include <VBox/log.h> 28 #include <iprt/assert.h> 27 29 28 30 … … 290 292 int rc; 291 293 292 compiler_assert(_IOC_SIZE(IOCTL_VBOXGUEST_HGCM_CALL) == sizeof(VBoxGuestHGCMCallInfo));294 AssertCompiler((_IOC_SIZE(IOCTL_VBOXGUEST_HGCM_CALL) == sizeof(VBoxGuestHGCMCallInfo))); 293 295 /* Get the call header from user space to see how many call parameters there are. */ 294 296 if (copy_from_user(&callHeader, (void*)arg, sizeof(callHeader)))
Note:
See TracChangeset
for help on using the changeset viewer.