Changeset 63561 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Aug 16, 2016 2:02:22 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110216
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvmgpt.cpp
r62477 r63561 272 272 pThis->HdrRev1.u64LbaFirstPartition = RT_LE2H_U64(pThis->HdrRev1.u64LbaFirstPartition); 273 273 pThis->HdrRev1.u64LbaLastPartition = RT_LE2H_U64(pThis->HdrRev1.u64LbaLastPartition); 274 /** @todo :Disk UUID */274 /** @todo Disk UUID */ 275 275 pThis->HdrRev1.u64LbaPartitionEntries = RT_LE2H_U64(pThis->HdrRev1.u64LbaPartitionEntries); 276 276 pThis->HdrRev1.cPartitionEntries = RT_LE2H_U32(pThis->HdrRev1.cPartitionEntries); … … 292 292 { 293 293 /* Convert to host endianess. */ 294 /** @todo :Uuids */294 /** @todo Uuids */ 295 295 pThis->paGptEntries[i].u64LbaFirst = RT_LE2H_U64(pThis->paGptEntries[i].u64LbaFirst); 296 296 pThis->paGptEntries[i].u64LbaLast = RT_LE2H_U64(pThis->paGptEntries[i].u64LbaLast); -
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
r62477 r63561 234 234 { 235 235 NOREF(hVolMgrFmt); 236 return 4; /** @todo :Add support for EBR? */236 return 4; /** @todo Add support for EBR? */ 237 237 } 238 238 -
trunk/src/VBox/Runtime/common/dvm/dvmvfs.cpp
r62477 r63561 201 201 { 202 202 NOREF(pvThis); 203 return VINF_SUCCESS; /* @todo:Implement missing DVM API. */203 return VINF_SUCCESS; /** @todo Implement missing DVM API. */ 204 204 } 205 205 -
trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
r62477 r63561 69 69 #endif 70 70 #ifdef ENXIO 71 case ENXIO: return VERR_DEV_IO_ERROR; /** @todo fix this duplicate error */71 case ENXIO: return VERR_DEV_IO_ERROR; /** @todo fix this duplicate error */ 72 72 #endif 73 73 #ifdef E2BIG … … 81 81 #endif 82 82 #ifdef ECHILD 83 case ECHILD: return VERR_PROCESS_NOT_FOUND; /* 10 */ /** @todo fix duplicate error */83 case ECHILD: return VERR_PROCESS_NOT_FOUND; /* 10 */ /** @todo fix duplicate error */ 84 84 #endif 85 85 #ifdef EAGAIN … … 90 90 #endif 91 91 #ifdef EACCES 92 case EACCES: return VERR_ACCESS_DENIED; /** @todo fix duplicate error */92 case EACCES: return VERR_ACCESS_DENIED; /** @todo fix duplicate error */ 93 93 #endif 94 94 #ifdef EFAULT … … 108 108 #endif 109 109 #ifdef ENODEV 110 case ENODEV: return VERR_NOT_SUPPORTED; /** @todo fix duplicate error */110 case ENODEV: return VERR_NOT_SUPPORTED; /** @todo fix duplicate error */ 111 111 #endif 112 112 #ifdef ENOTDIR … … 150 150 #endif 151 151 #ifdef EDOM 152 case EDOM: return VERR_INVALID_PARAMETER; /** @todo fix duplicate error */152 case EDOM: return VERR_INVALID_PARAMETER; /** @todo fix duplicate error */ 153 153 #endif 154 154 #ifdef ERANGE 155 case ERANGE: return VERR_INVALID_PARAMETER; /** @todo fix duplicate error */155 case ERANGE: return VERR_INVALID_PARAMETER; /** @todo fix duplicate error */ 156 156 #endif 157 157 #ifdef EDEADLK … … 272 272 #endif 273 273 #ifdef EOVERFLOW 274 case EOVERFLOW: return VERR_TOO_MUCH_DATA; /** @todo fix duplicate error */274 case EOVERFLOW: return VERR_TOO_MUCH_DATA; /** @todo fix duplicate error */ 275 275 #endif 276 276 #ifdef ENOTUNIQ … … 278 278 #endif 279 279 #ifdef EBADFD 280 case EBADFD: return VERR_INVALID_HANDLE; /** @todo fix duplicate error? */280 case EBADFD: return VERR_INVALID_HANDLE; /** @todo fix duplicate error? */ 281 281 #endif 282 282 #ifdef EREMCHG … … 302 302 #endif 303 303 #ifdef ERESTART 304 case ERESTART: return VERR_INTERRUPTED;/** @todo fix duplicate error?*/304 case ERESTART: return VERR_INTERRUPTED;/** @todo fix duplicate error?*/ 305 305 #endif 306 306 #ifdef ESTRPIPE … … 413 413 #endif 414 414 #ifdef EDQUOT 415 case EDQUOT: return VERR_DISK_FULL; /** @todo fix duplicate error */415 case EDQUOT: return VERR_DISK_FULL; /** @todo fix duplicate error */ 416 416 #endif 417 417 #ifdef ENOMEDIUM -
trunk/src/VBox/Runtime/common/filesystem/filesystemext.cpp
r62477 r63561 274 274 { 275 275 #if defined(RT_BIGENDIAN) 276 /** @todo :Convert to host endianess. */276 /** @todo Convert to host endianess. */ 277 277 #endif 278 278 if (SuperBlock.u16Signature == RTFILESYSTEM_EXT2_SIGNATURE) … … 298 298 { 299 299 #if defined(RT_BIGENDIAN) 300 /** @todo :Convert to host endianess. */300 /** @todo Convert to host endianess. */ 301 301 #endif 302 302 if (SuperBlock.u16FilesystemState == RTFILESYSTEM_EXT2_STATE_ERRORS) -
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r62566 r63561 3377 3377 } 3378 3378 3379 /// @todo only if SizeOfRawData > 0 ?3379 /// @todo only if SizeOfRawData > 0 ? 3380 3380 if ( pSH->PointerToRawData > cbRawImage /// @todo pSH->PointerToRawData >= cbRawImage ? 3381 3381 || pSH->SizeOfRawData > cbRawImage -
trunk/src/VBox/Runtime/common/misc/aiomgr.cpp
r62570 r63561 510 510 */ 511 511 if ( !fAlignedReq 512 /** @todo :|| ((pEpClassFile->uBitmaskAlignment & (RTR3UINTPTR)pvBuf) != (RTR3UINTPTR)pvBuf) */)512 /** @todo || ((pEpClassFile->uBitmaskAlignment & (RTR3UINTPTR)pvBuf) != (RTR3UINTPTR)pvBuf) */) 513 513 { 514 514 /* Create bounce buffer. */ … … 519 519 pReq->offBounceBuffer = pReq->off - offStart; 520 520 521 /** @todo :I think we need something like a RTMemAllocAligned method here.521 /** @todo I think we need something like a RTMemAllocAligned method here. 522 522 * Current assumption is that the maximum alignment is 4096byte 523 523 * (GPT disk on Windows) … … 867 867 { 868 868 /* Something bad happened. */ 869 /** @todo :*/869 /** @todo */ 870 870 } 871 871 else … … 1076 1076 else 1077 1077 { 1078 /** @todo :Real S/G buffer support. */1078 /** @todo Real S/G buffer support. */ 1079 1079 rtAioMgrReqFree(pAioMgr, pReq); 1080 1080 rc = VERR_NOT_SUPPORTED; -
trunk/src/VBox/Runtime/common/misc/json.cpp
r62564 r63561 355 355 return rtJsonTokenizerIsEos(pTokenizer) 356 356 ? '\0' 357 : pTokenizer->achBuf[pTokenizer->offBuf + 1]; /** @todo :Read out of bounds */357 : pTokenizer->achBuf[pTokenizer->offBuf + 1]; /** @todo Read out of bounds */ 358 358 } 359 359 … … 1059 1059 case RTJSONTOKENCLASS_EOS: 1060 1060 default: 1061 /** @todo :Error info */1061 /** @todo Error info */ 1062 1062 rc = VERR_JSON_MALFORMED; 1063 1063 break; -
trunk/src/VBox/Runtime/common/misc/s3.cpp
r62635 r63561 972 972 char *apszHead[5] = 973 973 { 974 /* todo:For now we use octet-stream for all types. Later we should try974 /** @todo For now we use octet-stream for all types. Later we should try 975 975 * to set the right one (libmagic from the file packet could be a 976 976 * candidate for finding the right type). */ -
trunk/src/VBox/Runtime/common/string/strformat.cpp
r62477 r63561 555 555 while (cchStr-- > 0) 556 556 { 557 /** @todo \#ifndef IN_RC*/557 /** @todo \#ifndef IN_RC*/ 558 558 #ifdef IN_RING3 559 559 RTUNICP Cp; … … 589 589 while (cchStr-- > 0) 590 590 { 591 /** @todo \#ifndef IN_RC*/591 /** @todo \#ifndef IN_RC*/ 592 592 #ifdef IN_RING3 593 593 char *pszEnd = RTStrPutCp(szTmp, *puszStr++); -
trunk/src/VBox/Runtime/common/zip/tar.cpp
r62477 r63561 656 656 657 657 /* Create a header record for the file */ 658 /* Todo:mode, gid, uid, mtime should be setable (or detected myself) */658 /** @todo mode, gid, uid, mtime should be setable (or detected myself) */ 659 659 RTTIMESPEC time; 660 660 RTTimeNow(&time);
Note:
See TracChangeset
for help on using the changeset viewer.