Changeset 6434 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Jan 22, 2008 7:10:54 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27402
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r6425 r6434 37 37 # include <sys/types.h> 38 38 # include <sys/stat.h> 39 # include <errno.h> 39 40 # include <stdio.h> 40 41 # include <stdlib.h> … … 174 175 return RTErrConvertFromOS2(rc); 175 176 176 #elif defined(RT_OS_SOLARIS) && 0177 #elif defined(RT_OS_SOLARIS) 177 178 VBGLBIGREQ Hdr; 178 179 Hdr.u32Magic = VBGLBIGREQ_MAGIC; 179 180 Hdr.cbData = cbData; 180 Hdr.pvData = pvData; 181 Assert(_IOC_SIZE(iFunction) == sizeof(Hdr)); 182 183 int rc = ioctl((int)File, iFunction, &Hdr); 181 Hdr.pvDataR3 = pvData; 182 183 int rc = ioctl((int)g_File, iFunction, &Hdr); 184 184 if (rc == -1) 185 185 rc = errno; 186 186 return rc; 187 187 188 /* PORTME */189 188 #else 190 189 /* Default implementation (linux, solaris). */
Note:
See TracChangeset
for help on using the changeset viewer.