Changeset 21200 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Jul 3, 2009 1:44:51 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r21199 r21200 381 381 382 382 #elif defined(RT_OS_LINUX) 383 # ifdef VBOX_VBGLR3_XFREE86 384 int rc = xf86ioctl((int)g_File, iFunction, pvData); 385 # else 383 386 int rc = ioctl((int)g_File, iFunction, pvData); 387 # endif 384 388 if (RT_LIKELY(rc == 0)) 385 389 return VINF_SUCCESS; … … 389 393 rc = -rc; 390 394 else 395 # ifdef VBOX_VBGLR3_XFREE86 396 rc = VERR_FILE_IO_ERROR; 397 # else 391 398 rc = RTErrConvertFromErrno(errno); 399 # endif 392 400 NOREF(cbData); 393 401 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.