Changeset 27937 in vbox
- Timestamp:
- Apr 1, 2010 1:24:02 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59639
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvChar.cpp
r27932 r27937 1 1 /* $Id$ */ 2 2 /** @file 3 * Driver that PDMISTREAM into PDMICHARCONNECTOR / PDMICHARPORT.3 * Driver that adapts PDMISTREAM into PDMICHARCONNECTOR / PDMICHARPORT. 4 4 * 5 5 * Converts synchronous calls (PDMICHARCONNECTOR::pfnWrite, PDMISTREAM::pfnRead) … … 327 327 if (pThis->ReceiveThread != NIL_RTTHREAD) 328 328 { 329 int rc = RTThreadWait(pThis->ReceiveThread, 30000 0, NULL);329 int rc = RTThreadWait(pThis->ReceiveThread, 30000, NULL); 330 330 if (RT_SUCCESS(rc)) 331 331 pThis->ReceiveThread = NIL_RTTHREAD;
Note:
See TracChangeset
for help on using the changeset viewer.