- Timestamp:
- May 21, 2021 8:22:44 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioCoreAudio.cpp
r89209 r89212 2679 2679 * Create worker thread for running callbacks on. 2680 2680 */ 2681 CFMachPortContext PortCtx = { .version = 0, .info = pThis, .retain = NULL, .release = NULL, .copyDescription = NULL }; 2681 CFMachPortContext PortCtx; 2682 PortCtx.version = 0; 2683 PortCtx.info = pThis; 2684 PortCtx.retain = NULL; 2685 PortCtx.release = NULL; 2686 PortCtx.copyDescription = NULL; 2682 2687 pThis->hThreadPort = CFMachPortCreate(NULL /*allocator*/, drvHostAudioCaThreadPortCallback, &PortCtx, NULL); 2683 2688 AssertLogRelReturn(pThis->hThreadPort != NULL, VERR_NO_MEMORY);
Note:
See TracChangeset
for help on using the changeset viewer.