Changeset 30013 in vbox
- Timestamp:
- Jun 3, 2010 2:40:59 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62335
- Location:
- trunk
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r29785 r30013 175 175 /** 176 176 * Guest disconnected (terminated normally or due to a crash HGCM 177 * detected when calling service::clientDisconnect(). 177 * detected when calling service::clientDisconnect(). 178 178 */ 179 179 GUEST_DISCONNECTED = 3, -
trunk/include/VBox/feature.h
-
Property svn:eol-style
set to
native
-
Property svn:eol-style
set to
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestCtrl.cpp
r29516 r30013 257 257 VbglHGCMParmUInt32Set(&Msg.context, 0); /** @todo Put this some header struct! */ 258 258 VbglHGCMParmUInt32Set(&Msg.pid, 0); 259 VbglHGCMParmUInt32Set(&Msg.handle, 0); 259 VbglHGCMParmUInt32Set(&Msg.handle, 0); 260 260 VbglHGCMParmUInt32Set(&Msg.flags, 0); 261 261 … … 273 273 Msg.pid.GetUInt32(puPID); 274 274 Msg.handle.GetUInt32(puHandle); 275 Msg.flags.GetUInt32(puFlags); 275 Msg.flags.GetUInt32(puFlags); 276 276 } 277 277 } -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r29594 r30013 306 306 /* 307 307 * Ask the host service to cancel all pending requests so that we can 308 * shutdown properly here. 308 * shutdown properly here. 309 309 */ 310 310 if (g_GuestControlSvcClientID) -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp
r29842 r30013 753 753 int rc = VINF_SUCCESS; 754 754 #ifdef RT_OS_WINDOWS 755 /* 755 /* 756 756 * If sysprep should be executed do this in the context of VBoxService, which 757 757 * (usually, if started by SCM) has administrator rights. Because of that a UI -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceCpuHotPlug.cpp
r29503 r30013 109 109 110 110 /** All possible combinations. */ 111 SYSFSCPUPATH g_aAcpiCpuPath[] = 111 SYSFSCPUPATH g_aAcpiCpuPath[] = 112 112 { 113 113 /** Level 1 */ -
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePageSharing.cpp
r29996 r30013 249 249 if (RT_FAILURE(rc)) 250 250 VBoxServiceVerbose(3, "VbglR3RegisterSharedModule failed with %d\n", rc); 251 251 252 252 end: 253 253 RTMemFree(pVersionInfo); … … 291 291 /** todo when changing this make sure VBoxService.exe is excluded! */ 292 292 char *pszDot = strrchr(ModuleInfo.szModule, '.'); 293 if ( pszDot 293 if ( pszDot 294 294 && (pszDot[1] == 'e' || pszDot[1] == 'E')) 295 295 continue; /* ignore executables for now. */ … … 374 374 PVOID pBuffer = NULL; 375 375 PRTL_PROCESS_MODULES pSystemModules; 376 376 377 377 NTSTATUS ret = ZwQuerySystemInformation(SystemModuleInformation, (PVOID)&cbBuffer, 0, &cbBuffer); 378 378 if (!cbBuffer) … … 381 381 goto skipkernelmodules; 382 382 } 383 383 384 384 pBuffer = RTMemAllocZ(cbBuffer); 385 385 if (!pBuffer) … … 392 392 goto skipkernelmodules; 393 393 } 394 394 395 395 pSystemModules = (PRTL_PROCESS_MODULES)pBuffer; 396 396 for (unsigned i = 0; i < pSystemModules->NumberOfModules; i++) … … 401 401 402 402 char *pszDot = strrchr(pSystemModules->Modules[i].FullPathName, '.'); 403 if ( pszDot 403 if ( pszDot 404 404 && (pszDot[1] == 'e' || pszDot[1] == 'E')) 405 405 continue; /* ignore executables for now. */ … … 534 534 #if defined(RT_OS_WINDOWS) && !defined(TARGET_NT4) 535 535 hNtdll = LoadLibrary("ntdll.dll"); 536 536 537 537 if (hNtdll) 538 538 ZwQuerySystemInformation = (PFNZWQUERYSYSTEMINFORMATION)GetProcAddress(hNtdll, "ZwQuerySystemInformation"); … … 559 559 * We have to use this feature as we can't simply execute all init code in our service process. 560 560 * 561 561 */ 562 562 int rc = RTSemEventMultiWait(g_PageSharingEvent, 60000); 563 563 if (*pfShutdown) -
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp
r29885 r30013 310 310 if ((pNode->fFlags & VBOXSERVICEPROPCACHEFLAG_TEMPORARY) == 0) 311 311 VBoxServiceWritePropF(pCache->uClientID, pNode->pszName, pNode->pszValueReset); 312 312 313 313 AssertPtr(pNode->pszName); 314 314 RTStrFree(pNode->pszName); … … 316 316 RTStrFree(pNode->pszValueReset); 317 317 pNode->fFlags = 0; 318 318 319 319 PVBOXSERVICEVEPROPCACHEENTRY pNext = RTListNodeGetNext(&pNode->Node, VBOXSERVICEVEPROPCACHEENTRY, Node); 320 320 RTListNodeRemove(&pNode->Node); 321 321 RTMemFree(pNode); 322 322 323 323 if (pNext && RTListNodeIsLast(&pCache->ListEntries, &pNext->Node)) 324 324 break; -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo-win.cpp
r29872 r30013 384 384 &enmOwnerType)) 385 385 { 386 VBoxServiceError("VMInfo/Users: Failed looking up account info for user '%ls': %ld!\n", 386 VBoxServiceError("VMInfo/Users: Failed looking up account info for user '%ls': %ld!\n", 387 387 a_pUserInfo->wszUser, GetLastError()); 388 388 } … … 437 437 } 438 438 } 439 } 439 } 440 440 441 441 LsaFreeReturnBuffer(pSessionData); -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r29861 r30013 269 269 VBoxServicePropCacheUpdate(&g_VMInfoPropCache, "/VirtualBox/GuestInfo/OS/NoLoggedInUsers", cUsersInList == 0 ? "true" : "false"); 270 270 g_cVMInfoLoggedInUsers = cUsersInList; 271 } 271 } 272 272 if (pszUserList) 273 273 RTStrFree(pszUserList); -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxAppleSim/ConsoleControl.h
r29085 r30013 27 27 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 28 28 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 29 * 29 * 30 30 * Module Name: 31 31 * -
trunk/src/VBox/Devices/Input/DevPS2.cpp
r28909 r30013 293 293 irq1_level = 0; 294 294 irq12_level = 0; 295 295 296 296 /* Determine new OBF state, but only if OBF is clear. If OBF was already 297 297 * set, we cannot risk changing the event type after an ISR potentially … … 316 316 if (s->mode & KBD_MODE_MOUSE_INT) 317 317 irq12_level = 1; 318 } 319 else 318 } 319 else 320 320 { /* KBD_STAT_OBF set but KBD_STAT_MOUSE_OBF isn't. */ 321 321 if ((s->mode & KBD_MODE_KBD_INT) && !(s->mode & KBD_MODE_DISABLE_KBD)) -
trunk/src/VBox/Devices/Network/DevE1000.cpp
r29685 r30013 2649 2649 * queuing thousands of items per second here in a normal transmit 2650 2650 * scenario. Expect performance changes when fixing this! */ 2651 #ifdef IN_RING3 2651 #ifdef IN_RING3 2652 2652 /* Signal that we have more receive descriptors avalable. */ 2653 2653 e1kWakeupReceive(pState->CTX_SUFF(pDevIns)); -
trunk/src/VBox/Devices/Network/slirp/bootp.c
r29656 r30013 657 657 */ 658 658 if ( !pData->fUseHostResolver 659 && ( pData->dnsLastUpdate == 0 659 && ( pData->dnsLastUpdate == 0 660 660 || curtime - pData->dnsLastUpdate > 60 * 1000)) /* one minute*/ 661 661 { -
trunk/src/VBox/Devices/Network/slirp/misc.c
r28800 r30013 352 352 int fExhausted; 353 353 RTCritSectEnter(&zone->csZone); 354 fExhausted = (zone->cur_items == zone->max_items); 354 fExhausted = (zone->cur_items == zone->max_items); 355 355 RTCritSectLeave(&zone->csZone); 356 356 return fExhausted; -
trunk/src/VBox/Devices/Network/slirp/socket.c
r29968 r30013 729 729 * Note: Here we can't check if dnsproxy's sent initial request 730 730 */ 731 if ( pData->fUseDnsProxy 731 if ( pData->fUseDnsProxy 732 732 && so->so_fport == RT_H2N_U16_C(53)) 733 733 dnsproxy_answer(pData, so, m); -
trunk/src/VBox/Devices/Serial/DevSerial.cpp
r29892 r30013 307 307 * hardware. */ 308 308 tmp_iir = UART_IIR_CTI; 309 } else if ( (s->ier & UART_IER_RDI) 309 } else if ( (s->ier & UART_IER_RDI) 310 310 && (s->lsr & UART_LSR_DR) 311 311 && ( !(s->fcr & UART_FCR_FE) -
trunk/src/VBox/Devices/Storage/ATAController.cpp
r29941 r30013 5149 5149 * required as well as optional. 5150 5150 */ 5151 5151 5152 5152 pIf->pDrvBase = pDrvBase; 5153 5153 if (pDrvBase) -
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r29751 r30013 1773 1773 { 1774 1774 pRequestHeader->rc = PGMR3SharedModuleRegister(PDMDevHlpGetVM(pDevIns), pReqModule->enmGuestOS, pReqModule->szName, pReqModule->szVersion, 1775 pReqModule->GCBaseAddr, pReqModule->cbModule, 1775 pReqModule->GCBaseAddr, pReqModule->cbModule, 1776 1776 pReqModule->cRegions, pReqModule->aRegions); 1777 1777 } … … 1789 1789 else 1790 1790 { 1791 pRequestHeader->rc = PGMR3SharedModuleUnregister(PDMDevHlpGetVM(pDevIns), pReqModule->szName, pReqModule->szVersion, 1791 pRequestHeader->rc = PGMR3SharedModuleUnregister(PDMDevHlpGetVM(pDevIns), pReqModule->szName, pReqModule->szVersion, 1792 1792 pReqModule->GCBaseAddr, pReqModule->cbModule); 1793 1793 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r29807 r30013 70 70 " [--arguments \"<arguments>\"]\n" 71 71 " [--environment \"<NAME>=<VALUE> [<NAME>=<VALUE>]\"]\n" 72 " [--flags <flags>] [--timeout <msec>]\n" 72 " [--flags <flags>] [--timeout <msec>]\n" 73 73 " [--verbose] [--wait-for exit,stdout,stderr||]\n" 74 74 "\n"); -
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/notifyobj/VBoxNetFltNotify.rc
r29025 r30013 54 54 END 55 55 56 57 -
trunk/src/VBox/HostServices/GuestControl/service.cpp
r29900 r30013 440 440 { 441 441 if (itCall->mClientID == u32ClientID) 442 { 442 { 443 443 itCall = mClientWaiterList.erase(itCall); 444 444 } -
trunk/src/VBox/Main/KeyboardImpl.cpp
r28909 r30013 170 170 if (!pUpPort) 171 171 return rc; 172 172 173 173 int vrc = pUpPort->pfnPutEvent(pUpPort, (uint8_t)scancode); 174 174 -
trunk/src/VBox/Main/glue/tests/Makefile.kmk
-
Property svn:keywords
set to
Id Revision
r29788 r30013 27 27 JACOB_JAR=$(JACOB_DIR)/jacob.jar 28 28 CLASSPATH += $(JACOB_JAR)$(SEP) 29 JAVA_ARGS += -Djava.library.path=$(JACOB_DIR) 29 JAVA_ARGS += -Djava.library.path=$(JACOB_DIR) 30 30 endif 31 31 … … 38 38 endif 39 39 40 JAVA_ARGS += -Dvbox.home=$(VBOX_BIN) 40 JAVA_ARGS += -Dvbox.home=$(VBOX_BIN) 41 41 CLASSPATH := $(CLASSPATH)$(VBOX_JAR)$(SEP). 42 42 -
Property svn:keywords
set to
-
trunk/src/VBox/Main/include/VirtualBoxErrorInfoImpl.h
r29753 r30013 60 60 61 61 STDMETHOD(GetTypeInfo)(UINT iInfo, LCID Lcid, ITypeInfo **ppTypeInfo) 62 62 { 63 63 return idi::GetTypeInfo(iInfo, Lcid, ppTypeInfo); 64 64 } 65 65 66 67 66 STDMETHOD(GetIDsOfNames)(REFIID rIID, LPOLESTR *papwszNames, UINT cNames, LCID Lcid, DISPID *paDispIDs) 67 { 68 68 return idi::GetIDsOfNames(rIID, papwszNames, cNames, Lcid, paDispIDs); 69 69 } 70 70 71 71 STDMETHOD(Invoke)(DISPID idDispMember, REFIID rIID, LCID Lcid, WORD fw, DISPPARAMS *pDispParams, 72 72 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *piErrArg) 73 74 75 73 { 74 return idi::Invoke(idDispMember, rIID, Lcid, fw, pDispParams, pVarResult, pExcepInfo, piErrArg); 75 } 76 76 77 77 #else // defined(VBOX_WITH_XPCOM) -
trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp
r29738 r30013 185 185 g_cbrtNtPbQuantumEnd = 1; 186 186 g_offrtNtPbDpcQueueDepth = 0x19e0 + 0xc; 187 } 187 } 188 188 else if ( BuildNumber == 3790 /* Server 2003 SP2 */ 189 189 && !memcmp(&pbPrcb[0xb60], &u.szVendor[0], 4*3)) -
trunk/src/VBox/Runtime/r0drv/solaris/semmutex-r0drv-solaris.c
r29284 r30013 387 387 } 388 388 389 -
trunk/src/VBox/Runtime/r3/win/RTSystemQueryDmiString-win.cpp
r29578 r30013 60 60 EOAC_NONE, /* Additional capabilities. */ 61 61 NULL); /* Reserved. */ 62 if (hrc == RPC_E_TOO_LATE) 62 if (hrc == RPC_E_TOO_LATE) 63 63 hrc = S_OK; 64 64 } -
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r29912 r30013 529 529 HANDLE hTokenLogon = INVALID_HANDLE_VALUE; 530 530 fRc = LogonUserW(pwszUser, 531 /* 531 /* 532 532 * Because we have to deal with http://support.microsoft.com/kb/245683 533 533 * for NULL domain names when running on NT4 here, pass an empty string if so. 534 * However, passing FQDNs should work! 534 * However, passing FQDNs should work! 535 535 */ 536 536 ((DWORD)(LOBYTE(LOWORD(GetVersion()))) < 5) /* < Windows 2000. */ … … 657 657 break; 658 658 659 case ERROR_PASSWORD_EXPIRED: 659 case ERROR_PASSWORD_EXPIRED: 660 660 case ERROR_ACCOUNT_RESTRICTION: /* See: http://support.microsoft.com/kb/303846/ */ 661 661 rc = VERR_LOGON_FAILURE; -
trunk/src/VBox/VMM/PGMPool.cpp
r29888 r30013 754 754 */ 755 755 for (unsigned i = 0; i < RT_ELEMENTS(pPool->aIdxDirtyPages); i++) 756 756 { 757 757 PPGMPOOLPAGE pPage; 758 758 unsigned idxPage; … … 777 777 778 778 pPool->aIdxDirtyPages[i] = NIL_PGMPOOL_IDX; 779 779 } 780 780 781 781 /* Clear all dirty pages. */ -
trunk/src/VBox/VMM/PGMSharedPage.cpp
r30009 r30013 56 56 57 57 Log(("PGMR3SharedModuleRegister family=%d name=%s version=%s base=%RGv size=%x cRegions=%d\n", enmGuestOS, pszModuleName, pszVersion, GCBaseAddr, cbModule, cRegions)); 58 58 59 59 /* Sanity check. */ 60 60 AssertReturn(cRegions < VMMDEVSHAREDREGIONDESC_MAX, VERR_INVALID_PARAMETER); … … 107 107 pReq = (PGMMUNREGISTERSHAREDMODULEREQ)RTMemAllocZ(sizeof(*pReq)); 108 108 AssertReturn(pReq, VERR_NO_MEMORY); 109 109 110 110 pReq->GCBaseAddr = GCBaseAddr; 111 111 pReq->cbModule = cbModule; … … 120 120 RTMemFree(pReq); 121 121 return rc; 122 #else 122 #else 123 123 return VERR_NOT_IMPLEMENTED; 124 124 #endif … … 154 154 */ 155 155 static DECLCALLBACK(void) pgmR3CheckSharedModulesHelper(PVM pVM) 156 { 156 { 157 157 /* We must stall other VCPUs as we'd otherwise have to send IPI flush commands for every single change we make. */ 158 158 int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ONCE, pgmR3SharedModuleRegRendezvous, NULL); … … 172 172 /* Queue the actual registration as we are under the IOM lock right now. Perform this operation on the way out. */ 173 173 return VMR3ReqCallNoWait(pVM, VMMGetCpuId(pVM), (PFNRT)pgmR3CheckSharedModulesHelper, 1, pVM); 174 #else 174 #else 175 175 return VERR_NOT_IMPLEMENTED; 176 176 #endif -
trunk/src/VBox/VMM/VMMR0/PGMR0SharedPage.cpp
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision
r29741 r30013 1 /* $Id : PGMR0.cpp 61539 2010-05-12 15:11:09Z sandervl$ */1 /* $Id$ */ 2 2 /** @file 3 3 * PGM - Page Manager and Monitor, Ring-0. … … 115 115 if (RT_FAILURE(rc)) 116 116 break; 117 117 118 118 for (unsigned i = 0; i < idxPage; i++) 119 119 { -
Property svn:eol-style
set to
Note:
See TracChangeset
for help on using the changeset viewer.