Changeset 100108 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Jun 7, 2023 8:05:13 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157801
- Location:
- trunk/src/VBox/Runtime/r3/darwin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp
r98103 r100108 181 181 */ 182 182 SecKeychainRef hKeychain; 183 OSStatus orc = SecKeychainOpen(pszKeychain, &hKeychain); 183 184 RT_GCC_NO_WARN_DEPRECATED_BEGIN 185 OSStatus orc = SecKeychainOpen(pszKeychain, &hKeychain); /* Deprecated since 12.0 */ 186 RT_GCC_NO_WARN_DEPRECATED_END 184 187 if (orc == noErr) 185 188 { -
trunk/src/VBox/Runtime/r3/darwin/RTMpGetDescription-generic.cpp
r98103 r100108 71 71 char szArmCpuPath[64]; 72 72 RTStrPrintf(szArmCpuPath, sizeof(szArmCpuPath), "IODeviceTree:/cpus/cpu%x", idCpu); /** @todo Hex? M1 Max only has 10 cores... */ 73 io_registry_entry_t hIoRegEntry = IORegistryEntryFromPath(kIOMasterPortDefault, szArmCpuPath); 73 74 RT_GCC_NO_WARN_DEPRECATED_BEGIN 75 io_registry_entry_t hIoRegEntry = IORegistryEntryFromPath(kIOMasterPortDefault, szArmCpuPath); /* kIOMasterPortDefault: Deprecated since 12.0. */ 76 RT_GCC_NO_WARN_DEPRECATED_END 74 77 if (hIoRegEntry != MACH_PORT_NULL) 75 78 { -
trunk/src/VBox/Runtime/r3/darwin/RTSystemQueryDmiString-darwin.cpp
r98103 r100108 82 82 83 83 mach_port_t MasterPort; 84 kern_return_t kr = IOMasterPort(MACH_PORT_NULL, &MasterPort); 84 85 RT_GCC_NO_WARN_DEPRECATED_BEGIN 86 kern_return_t kr = IOMasterPort(MACH_PORT_NULL, &MasterPort); /* Deprecated since 12.0. */ 87 RT_GCC_NO_WARN_DEPRECATED_END 85 88 if (kr != kIOReturnSuccess) 86 89 { -
trunk/src/VBox/Runtime/r3/darwin/mp-darwin.cpp
r98103 r100108 370 370 RTStrPrintf(szCpuPath, sizeof(szCpuPath), "IODeviceTree:/cpus/cpu%x", idCpu); /** @todo Hex? M1 Max only has 10 cores... */ 371 371 # endif 372 io_registry_entry_t hIoRegEntry = IORegistryEntryFromPath(kIOMasterPortDefault, szCpuPath); 372 373 RT_GCC_NO_WARN_DEPRECATED_BEGIN 374 io_registry_entry_t hIoRegEntry = IORegistryEntryFromPath(kIOMasterPortDefault, szCpuPath); /* kIOMasterPortDefault: Deprecated since 12.0. */ 375 RT_GCC_NO_WARN_DEPRECATED_END 376 373 377 if (hIoRegEntry != MACH_PORT_NULL) 374 378 {
Note:
See TracChangeset
for help on using the changeset viewer.