Changeset 63566 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Aug 16, 2016 2:05:58 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110221
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxDev-haiku.c
r62521 r63566 124 124 RTSpinlockAcquire(g_DevExt.SessionSpinlock); 125 125 126 /* @todo we don't know if it belongs to this session!! */126 /** @todo we don't know if it belongs to this session!! */ 127 127 if (sState.selectSync) 128 128 { -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-haiku.c
r62521 r63566 433 433 */ 434 434 pState->uIOPortBase = pDevice->u.h0.base_registers[0]; 435 /* @todo check flags for IO? */435 /** @todo check flags for IO? */ 436 436 if (pState->uIOPortBase) 437 437 { … … 440 440 */ 441 441 uint32 phys = pDevice->u.h0.base_registers[1]; 442 /* @todo Check flags for mem? */442 /** @todo Check flags for mem? */ 443 443 pState->VMMDevMemSize = pDevice->u.h0.base_register_sizes[1]; 444 444 pState->iVMMDevMemAreaId = map_physical_memory("VirtualBox Guest MMIO", phys, pState->VMMDevMemSize, -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibModule.cpp
r62842 r63566 69 69 # endif 70 70 #else 71 /** todo */71 /** @todo */ 72 72 pReq->enmGuestOS = VBOXOSFAMILY_Unknown; 73 73 #endif -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceStats.cpp
r62679 r63566 614 614 615 615 #else 616 /* todo:implement for other platforms. */616 /** @todo implement for other platforms. */ 617 617 618 618 #endif -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r63338 r63566 73 73 # include <unistd.h> 74 74 # if !defined(RT_OS_OS2) && !defined(RT_OS_FREEBSD) && !defined(RT_OS_HAIKU) 75 # include <utmpx.h> /* @todo FreeBSD 9 should have this. */75 # include <utmpx.h> /** @todo FreeBSD 9 should have this. */ 76 76 # endif 77 77 # ifdef RT_OS_OS2 … … 1107 1107 * Only AF_INET and no loopback interfaces 1108 1108 */ 1109 /** @todo :IPv6 interfaces */1109 /** @todo IPv6 interfaces */ 1110 1110 if ( pIfCurr->ifa_addr->sa_family == AF_INET 1111 1111 && !(pIfCurr->ifa_flags & IFF_LOOPBACK)) -
trunk/src/VBox/Additions/common/testcase/tstPageFusion.cpp
r62679 r63566 208 208 do 209 209 { 210 /** todo when changing this make sure VBoxService.exe is excluded! */210 /** @todo when changing this make sure VBoxService.exe is excluded! */ 211 211 char *pszDot = strrchr(ModuleInfo.szModule, '.'); 212 212 if ( pszDot … … 315 315 void VBoxServicePageSharingInspectGuest() 316 316 { 317 /* @todo other platforms */317 /** @todo other platforms */ 318 318 } 319 319 #endif … … 332 332 #endif 333 333 334 /* @todo report system name and version */334 /** @todo report system name and version */ 335 335 /* Never fail here. */ 336 336 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.