Changeset 21199 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Jul 3, 2009 1:23:29 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49502
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r18452 r21199 32 32 # include <os2.h> 33 33 34 #elif defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD) 34 #elif defined(RT_OS_FREEBSD) \ 35 || defined(RT_OS_LINUX) \ 36 || defined(RT_OS_SOLARIS) 35 37 # include <sys/types.h> 36 38 # include <sys/stat.h> 39 # if defined(RT_OS_LINUX) /** @todo check this on solaris+freebsd as well. */ 40 # include <sys/ioctl.h> 41 # endif 37 42 # include <errno.h> 38 43 # include <unistd.h> … … 375 380 return VINF_SUCCESS; 376 381 382 #elif defined(RT_OS_LINUX) 383 int rc = ioctl((int)g_File, iFunction, pvData); 384 if (RT_LIKELY(rc == 0)) 385 return VINF_SUCCESS; 386 387 /* Positive values are negated VBox error status codes. */ 388 if (rc > 0) 389 rc = -rc; 390 else 391 rc = RTErrConvertFromErrno(errno); 392 NOREF(cbData); 393 return rc; 394 377 395 #elif defined(VBOX_VBGLR3_XFREE86) 378 396 /* PORTME - This is preferred over the RTFileIOCtl variant below, just be careful with the (int). */
Note:
See TracChangeset
for help on using the changeset viewer.