Changeset 6425 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 21, 2008 6:36:11 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27391
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r6423 r6425 188 188 /* PORTME */ 189 189 #else 190 /* Defa lut implementation (linux, solaris). */190 /* Default implementation (linux, solaris). */ 191 191 int rc2 = VERR_INTERNAL_ERROR; 192 192 int rc = RTFileIoCtl(g_File, (int)iFunction, pvData, cbData, &rc2); … … 309 309 * so split large string into 128 byte chunks to prevent truncation. 310 310 */ 311 #define STEP 128 311 #define STEP 128 /** @todo increase to 512 when solaris ioctl code is fixed. (darwin limits us to 1024 IIRC) */ 312 312 int rc = VINF_SUCCESS; 313 313 for (size_t off = 0; off < cb && RT_SUCCESS(rc); off += STEP)
Note:
See TracChangeset
for help on using the changeset viewer.