Changeset 63565 in vbox for trunk/src/VBox/HostServices/SharedFolders
- Timestamp:
- Aug 16, 2016 2:05:19 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110220
- Location:
- trunk/src/VBox/HostServices/SharedFolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/HostServices/SharedFolders/service.cpp ¶
r62787 r63565 687 687 else if (flags & SHFL_LOCK_WAIT) 688 688 { 689 /* @todo This should be properly implemented by the shared folders service.689 /** @todo This should be properly implemented by the shared folders service. 690 690 * The service thread must never block. If an operation requires 691 691 * blocking, it must be processed by another thread and when it is -
TabularUnified trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp ¶
r62876 r63565 476 476 { 477 477 /* For now, we do not treat a failure here as fatal. */ 478 /* @todo Also set the size for SHFL_CF_ACT_CREATE_IF_NEW if478 /** @todo Also set the size for SHFL_CF_ACT_CREATE_IF_NEW if 479 479 SHFL_CF_ACT_FAIL_IF_EXISTS is set. */ 480 480 RTFileSetSize(pHandle->file.Handle, pParms->Info.cbObject); … … 489 489 } 490 490 #if 0 491 /* @todo */491 /** @todo */ 492 492 /* Set new attributes. */ 493 493 if ( ( SHFL_CF_ACT_REPLACE_IF_EXISTS … … 970 970 971 971 if (*pcbBuffer == 0) 972 return VINF_SUCCESS; /* @todo correct? */972 return VINF_SUCCESS; /** @todo correct? */ 973 973 974 974 … … 1361 1361 } 1362 1362 1363 /* @todo other options */1363 /** @todo other options */ 1364 1364 Assert(flags == (SHFL_INFO_GET|SHFL_INFO_FILE)); 1365 1365 … … 1469 1469 } 1470 1470 } 1471 /* TODO:mode for directories */1471 /** @todo mode for directories */ 1472 1472 1473 1473 if (rc == VINF_SUCCESS) … … 1549 1549 } 1550 1550 1551 /* @todo other options */1551 /** @todo other options */ 1552 1552 Assert(flags == (SHFL_INFO_GET|SHFL_INFO_VOLUME)); 1553 1553
Note:
See TracChangeset
for help on using the changeset viewer.