Changeset 6213 in vbox for trunk/src/VBox
- Timestamp:
- Dec 28, 2007 5:20:23 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27015
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvNamedPipe.cpp
r5999 r6213 505 505 if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) == -1) 506 506 return PDMDrvHlpVMSetError(pDrvIns, RTErrConvertFromErrno(errno), RT_SRC_POS, N_("NamedPipe#%d failed to bind to local socket %s"), pDrvIns->iInstance, pszLocation); 507 pData->LocalSocketServer = s; 507 508 rc = RTThreadCreate(&pData->ListenThread, drvNamedPipeListenLoop, (void *)pData, 0, RTTHREADTYPE_IO, RTTHREADFLAGS_WAITABLE, "NamedPipe"); 508 509 if VBOX_FAILURE(rc) 509 510 return PDMDrvHlpVMSetError(pDrvIns, rc, RT_SRC_POS, N_("NamedPipe#%d failed to create listening thread"), pDrvIns->iInstance); 510 pData->LocalSocketServer = s;511 511 } 512 512 else
Note:
See TracChangeset
for help on using the changeset viewer.