儲存庫 vbox 的更動 38733
- 時間撮記:
- 2011-9-13 下午01:17:13 (13 年 以前)
- 位置:
- trunk
- 檔案:
-
- 修改 9 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/Config.kmk
r38691 r38733 2534 2534 ifeq ($(origin VBOX_LINUX_INCS),undefined) 2535 2535 export VBOX_LINUX_INCS := $(VBOX_LINUX_SRC)/include 2536 # XXX hack alert! support split tedLinux kernels (make O=<build directory>)2536 # XXX hack alert! support split Linux kernels (make O=<build directory>) 2537 2537 # XXX put this crap elsewhere 2538 2538 kernelpath := $(shell $(SED_EXT) -ne 's+^KERNELSRC.*= *\(.*\)+\1+p' $(VBOX_LINUX_SRC)/Makefile) -
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r38637 r38733 1012 1012 else if (RT_SUCCESS(rc)) 1013 1013 { 1014 RTPrintf("Value: % S\n", pszValue);1014 RTPrintf("Value: %s\n", pszValue); 1015 1015 if (fVerbose) 1016 1016 { 1017 1017 RTPrintf("Timestamp: %lld ns\n", u64Timestamp); 1018 RTPrintf("Flags: % S\n", pszFlags);1018 RTPrintf("Flags: %s\n", pszFlags); 1019 1019 } 1020 1020 } -
trunk/src/VBox/Devices/PC/BIOS-new/makefile
r38705 r38733 14 14 QUOTE=" 15 15 !endif 16 CFLAGS = -q -0 -wx -zu -s -oas -d1 -ms16 CFLAGS = -q -0 -wx -zu -s -oas -d1+ -ms 17 17 DEFS = -DVBOX -DVBOX_LANBOOT_SEG=0xE200 -DVBOX_VERSION_STRING=$(QUOTE)0.9$(QUOTE) & 18 18 -DVBOX_WITH_SCSI -
trunk/src/VBox/Disassembler/DisasmTables.cpp
r36766 r38733 1 1 /** @file 2 * 3 * VBox disassembler: 4 * Tables 2 * VBox disassembler - Tables. 5 3 */ 6 4 7 5 /* 8 * Copyright (C) 2006-20 07Oracle Corporation6 * Copyright (C) 2006-2011 Oracle Corporation 9 7 * 10 8 * This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Disassembler/DisasmTablesX64.cpp
r28800 r38733 1 1 /** @file 2 * 3 * VBox disassembler: 4 * Tables for x64 (long mode) 2 * VBox disassembler - Tables for AMD64 (long mode). 5 3 */ 6 4 7 5 /* 8 * Copyright (C) 2006-20 07Oracle Corporation6 * Copyright (C) 2006-2011 Oracle Corporation 9 7 * 10 8 * This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r38555 r38733 1725 1725 1726 1726 if (details == VMINFO_MACHINEREADABLE) 1727 RTPrintf("USBRemoteUUID%zu=\"% S\"\n"1727 RTPrintf("USBRemoteUUID%zu=\"%s\"\n" 1728 1728 "USBRemoteVendorId%zu=\"%#06x\"\n" 1729 1729 "USBRemoteProductId%zu=\"%#06x\"\n" … … 1734 1734 index + 1, bcdRevision >> 8, bcdRevision & 0xff); 1735 1735 else 1736 RTPrintf("UUID: % S\n"1736 RTPrintf("UUID: %s\n" 1737 1737 "VendorId: %#06x (%04X)\n" 1738 1738 "ProductId: %#06x (%04X)\n" … … 1814 1814 1815 1815 if (details == VMINFO_MACHINEREADABLE) 1816 RTPrintf("USBAttachedUUID%zu=\"% S\"\n"1816 RTPrintf("USBAttachedUUID%zu=\"%s\"\n" 1817 1817 "USBAttachedVendorId%zu=\"%#06x\"\n" 1818 1818 "USBAttachedProductId%zu=\"%#06x\"\n" … … 1823 1823 index + 1, bcdRevision >> 8, bcdRevision & 0xff); 1824 1824 else 1825 RTPrintf("UUID: % S\n"1825 RTPrintf("UUID: %s\n" 1826 1826 "VendorId: %#06x (%04X)\n" 1827 1827 "ProductId: %#06x (%04X)\n" -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r37244 r38733 700 700 CHECK_ERROR_RET(dev, COMGETTER(Revision)(&bcdRevision), 1); 701 701 702 RTPrintf("UUID: % S\n"702 RTPrintf("UUID: %s\n" 703 703 "VendorId: %#06x (%04X)\n" 704 704 "ProductId: %#06x (%04X)\n" -
trunk/src/VBox/HostServices/SharedFolders/service.cpp
r35482 r38733 876 876 Log(("SharedFolders host service: svcCall: SHFL_FN_MAP_FOLDER\n")); 877 877 if (BIT_FLAG(pClient->fu32Flags, SHFL_CF_UTF8)) 878 Log(("SharedFolders host service: request to map folder '% S'\n",878 Log(("SharedFolders host service: request to map folder '%s'\n", 879 879 ((PSHFLSTRING)paParms[0].u.pointer.addr)->String.utf8)); 880 880 else 881 Log(("SharedFolders host service: request to map folder '%l S'\n",881 Log(("SharedFolders host service: request to map folder '%ls'\n", 882 882 ((PSHFLSTRING)paParms[0].u.pointer.addr)->String.ucs2)); 883 883 -
trunk/src/VBox/Runtime/testcase/tstDir-2.cpp
r38651 r38733 67 67 break; 68 68 } 69 RTPrintf(" %#18llx %3d % S\n", (uint64_t)DirEntry.INodeId,69 RTPrintf(" %#18llx %3d %s\n", (uint64_t)DirEntry.INodeId, 70 70 DirEntry.cbName, DirEntry.szName); 71 71 }
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器