Changeset 63566 in vbox for trunk/src/VBox/Additions/darwin/vboxfs
- Timestamp:
- Aug 16, 2016 2:05:58 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110221
- Location:
- trunk/src/VBox/Additions/darwin/vboxfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/darwin/vboxfs/VBoxVFS-VFSOps.cpp
r63526 r63566 439 439 && fRootVnodeState != VBOXVFS_OBJECT_INVALID) 440 440 { 441 /* @todo:Currently, we are burning CPU cycles while waiting. This is for a short441 /** @todo Currently, we are burning CPU cycles while waiting. This is for a short 442 442 * time but we should relax here! */ 443 443 fRootVnodeState = ASMAtomicReadU8(&pMount->fRootVnodeState); … … 529 529 VFSATTR_CLEAR_ACTIVE(pAttr, f_fssubtype); 530 530 531 /* todo:take care about f_capabilities and f_attributes, f_fsid */531 /** @todo take care about f_capabilities and f_attributes, f_fsid */ 532 532 VFSATTR_CLEAR_ACTIVE(pAttr, f_capabilities); 533 533 VFSATTR_CLEAR_ACTIVE(pAttr, f_attributes); 534 534 VFSATTR_CLEAR_ACTIVE(pAttr, f_fsid); 535 535 536 /* todo:take care about f_create_time, f_modify_time, f_access_time, f_backup_time */536 /** @todo take care about f_create_time, f_modify_time, f_access_time, f_backup_time */ 537 537 VFSATTR_CLEAR_ACTIVE(pAttr, f_create_time); 538 538 VFSATTR_CLEAR_ACTIVE(pAttr, f_modify_time); -
trunk/src/VBox/Additions/darwin/vboxfs/VBoxVFS-VNODEOps.cpp
r63526 r63566 101 101 //VATTR_CLEAR_ACTIVE(vnode_args, va_addedtime); 102 102 103 /* todo:take care about va_encoding (file name encoding) */103 /** @todo take care about va_encoding (file name encoding) */ 104 104 VATTR_CLEAR_ACTIVE(vnode_args, va_encoding); 105 /* todo:take care about: va_acl */105 /** @todo take care about: va_acl */ 106 106 VATTR_CLEAR_ACTIVE(vnode_args, va_acl); 107 107 … … 312 312 /* If vnode exist in guets VFS cache, but not exist on a host -- just forget it. */ 313 313 cache_purge(vnode); 314 /* todo:free vnode data here */314 /** @todo free vnode data here */ 315 315 rc = ENOENT; 316 316 }
Note:
See TracChangeset
for help on using the changeset viewer.