Changeset 19068 in vbox
- Timestamp:
- Apr 21, 2009 11:47:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r18466 r19068 384 384 RTTIMESPEC timeSpec; 385 385 RTTimeSpecSetMilli(&timeSpec, uTCTime); 386 char pszTime[30] = {0};387 RTTimeSpecToString(&timeSpec, pszTime, sizeof(pszTime));388 RTPrintf("Host time: %s\n", pszTime);386 char szTime[32] = {0}; 387 RTTimeSpecToString(&timeSpec, szTime, sizeof(szTime)); 388 RTPrintf("Host time: %s\n", szTime); 389 389 390 390 ULONG processorOnlineCount = 0; … … 409 409 } 410 410 411 #if 0 /* not yet implemented in Main */412 411 ULONG memorySize = 0; 413 412 CHECK_ERROR (Host, COMGETTER(MemorySize)(&memorySize)); … … 418 417 RTPrintf("Memory available: %lu MByte\n", memoryAvailable); 419 418 419 #if 0 /* not yet implemented in Main */ 420 420 Bstr operatingSystem; 421 421 CHECK_ERROR (Host, COMGETTER(OperatingSystem)(operatingSystem.asOutParam()));
Note:
See TracChangeset
for help on using the changeset viewer.