Changeset 77633 in vbox for trunk/src/VBox
- Timestamp:
- Mar 10, 2019 2:46:32 PM (6 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fileio-sg-at-posix.cpp
r77632 r77633 64 64 # include <sys/uio.h> 65 65 # include <unistd.h> 66 # include <limits.h> 67 # if defined(RT_OS_DARWIN) || defined(RT_OS_FREEBSD) || defined(RT_OS_NETBSD) || defined(RT_OS_OPENBSD) 68 # include <sys/syslimits.h> 69 # endif 66 70 67 71 # include "internal/iprt.h" … … 73 77 74 78 # ifndef UIO_MAXIOV 75 # error "UIO_MAXIOV is undefined" 79 # ifdef IOV_MAX 80 # define UIO_MAXIOV IOV_MAX 81 # else 82 # error "UIO_MAXIOV and IOV_MAX are undefined" 83 # endif 76 84 # endif 77 85 -
trunk/src/VBox/Runtime/r3/posix/fileio-sg-posix.cpp
r77632 r77633 34 34 #include <sys/uio.h> 35 35 #include <unistd.h> 36 #include <limits.h> 37 #if defined(RT_OS_DARWIN) || defined(RT_OS_FREEBSD) || defined(RT_OS_NETBSD) || defined(RT_OS_OPENBSD) 38 # include <sys/syslimits.h> 39 #endif 36 40 37 41 #include "internal/iprt.h" … … 43 47 44 48 #ifndef UIO_MAXIOV 45 # error "UIO_MAXIOV is undefined" 49 # ifdef IOV_MAX 50 # define UIO_MAXIOV IOV_MAX 51 # else 52 # error "UIO_MAXIOV and IOV_MAX are undefined" 53 # endif 46 54 #endif 47 55
Note:
See TracChangeset
for help on using the changeset viewer.