Changeset 63692 in vbox
- Timestamp:
- Sep 2, 2016 12:41:41 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
include/VBox/vmm/pdmdev.h (modified) (9 diffs)
-
src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp (modified) (1 diff)
-
src/VBox/ValidationKit/testmanager/apache-template-2.4.conf (modified) (2 diffs)
-
src/VBox/ValidationKit/testmanager/misc/htpasswd-sample (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r63685 r63692 3098 3098 * @thread EMT 3099 3099 */ 3100 DECLR3CALLBACKMEMBER(void, pfnPCISetConfigCallbacks,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld, 3100 DECLR3CALLBACKMEMBER(void, pfnPCISetConfigCallbacks,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, 3101 PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld, 3101 3102 PFNPCICONFIGWRITE pfnWrite, PPFNPCICONFIGWRITE ppfnWriteOld)); 3102 3103 … … 4545 4546 * @param pszDesc Pointer to description string. This must not be freed. 4546 4547 */ 4547 DECLINLINE(int) PDMDevHlpMMIORegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_tcbRange, RTHCPTR pvUser,4548 DECLINLINE(int) PDMDevHlpMMIORegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTGCPHYS cbRange, RTHCPTR pvUser, 4548 4549 uint32_t fFlags, PFNIOMMMIOWRITE pfnWrite, PFNIOMMMIOREAD pfnRead, const char *pszDesc) 4549 4550 { … … 4567 4568 * @param pszRead Name of the RC function which is gonna handle Read operations. 4568 4569 */ 4569 DECLINLINE(int) PDMDevHlpMMIORegisterRC(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_tcbRange, RTRCPTR pvUser,4570 DECLINLINE(int) PDMDevHlpMMIORegisterRC(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTGCPHYS cbRange, RTRCPTR pvUser, 4570 4571 const char *pszWrite, const char *pszRead) 4571 4572 { … … 4590 4591 * registered callback methods. 4591 4592 */ 4592 DECLINLINE(int) PDMDevHlpMMIORegisterR0(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_tcbRange, RTR0PTR pvUser,4593 DECLINLINE(int) PDMDevHlpMMIORegisterR0(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTGCPHYS cbRange, RTR0PTR pvUser, 4593 4594 const char *pszWrite, const char *pszRead) 4594 4595 { … … 4599 4600 * @copydoc PDMDEVHLPR3::pfnMMIORegister 4600 4601 */ 4601 DECLINLINE(int) PDMDevHlpMMIORegisterEx(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_tcbRange, RTHCPTR pvUser,4602 DECLINLINE(int) PDMDevHlpMMIORegisterEx(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTGCPHYS cbRange, RTHCPTR pvUser, 4602 4603 uint32_t fFlags, PFNIOMMMIOWRITE pfnWrite, PFNIOMMMIOREAD pfnRead, 4603 4604 PFNIOMMMIOFILL pfnFill, const char *pszDesc) … … 4610 4611 * @copydoc PDMDEVHLPR3::pfnMMIORegisterRC 4611 4612 */ 4612 DECLINLINE(int) PDMDevHlpMMIORegisterRCEx(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_tcbRange, RTRCPTR pvUser,4613 DECLINLINE(int) PDMDevHlpMMIORegisterRCEx(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTGCPHYS cbRange, RTRCPTR pvUser, 4613 4614 const char *pszWrite, const char *pszRead, const char *pszFill) 4614 4615 { … … 4619 4620 * @copydoc PDMDEVHLPR3::pfnMMIORegisterR0 4620 4621 */ 4621 DECLINLINE(int) PDMDevHlpMMIORegisterR0Ex(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_tcbRange, RTR0PTR pvUser,4622 DECLINLINE(int) PDMDevHlpMMIORegisterR0Ex(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTGCPHYS cbRange, RTR0PTR pvUser, 4622 4623 const char *pszWrite, const char *pszRead, const char *pszFill) 4623 4624 { … … 4628 4629 * @copydoc PDMDEVHLPR3::pfnMMIODeregister 4629 4630 */ 4630 DECLINLINE(int) PDMDevHlpMMIODeregister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_tcbRange)4631 DECLINLINE(int) PDMDevHlpMMIODeregister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTGCPHYS cbRange) 4631 4632 { 4632 4633 return pDevIns->pHlpR3->pfnMMIODeregister(pDevIns, GCPhysStart, cbRange); … … 5016 5017 * @copydoc PDMDEVHLPR3::pfnPCISetConfigCallbacks 5017 5018 */ 5018 DECLINLINE(void) PDMDevHlpPCISetConfigCallbacks(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld, 5019 DECLINLINE(void) PDMDevHlpPCISetConfigCallbacks(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, 5020 PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld, 5019 5021 PFNPCICONFIGWRITE pfnWrite, PPFNPCICONFIGWRITE ppfnWriteOld) 5020 5022 { -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r63602 r63692 4389 4389 m_host.detach(); 4390 4390 m_vbox.detach(); 4391 __debugbreak(); 4391 4392 m_client.detach(); 4392 4393 -
trunk/src/VBox/ValidationKit/testmanager/apache-template-2.4.conf
r56295 r63692 28 28 # 29 29 30 31 30 <LocationMatch "^/testmanager/logout.py"> 32 31 AuthType Basic … … 41 40 AuthUserFile ${TestManagerRootDir}/misc/htpasswd-sample 42 41 Require valid-user 42 </LocationMatch> 43 44 <LocationMatch "^/testmanager/testboxdisp.py"> 45 Order deny,allow 46 Require all granted 43 47 </LocationMatch> 44 48 -
trunk/src/VBox/ValidationKit/testmanager/misc/htpasswd-sample
r52776 r63692 1 1 admin:ZXHvyrLs.vCmw 2 2 test:ClO2uu6/D7jDg 3 kosmunds:$apr1$h83FUd4z$.54hstLoWFLmrXdggrVUP.
Note:
See TracChangeset
for help on using the changeset viewer.

