Changeset 92078 in vbox
- Timestamp:
- Oct 26, 2021 12:06:54 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvVMNet.m
r91873 r92078 389 389 dispatch_semaphore_signal(operation_done); 390 390 }); 391 dispatch_semaphore_wait(operation_done, DISPATCH_TIME_FOREVER);391 dispatch_semaphore_wait(operation_done, dispatch_time(DISPATCH_TIME_NOW, RT_NS_10SEC)); 392 392 393 393 if (vmnet_status != VMNET_SUCCESS) … … 422 422 rc = vmnet_read(pThis->Interface, &packets, &packet_count); 423 423 if (rc != VMNET_SUCCESS) 424 Log(("Failed to read packets , rc=%d\n", rc));424 Log(("Failed to read packets with error code %d\n", rc)); 425 425 else 426 426 {
Note:
See TracChangeset
for help on using the changeset viewer.