| 128 | } |
| 129 | |
| 130 | void WindowsPipeReceiver::GetWaitObjects(WaitObjectContainer &container, CallStack const& callStack) |
| 131 | { |
| 132 | if (m_resultPending) |
| 133 | container.AddHandle(m_event, CallStack("WindowsPipeReceiver::GetWaitObjects() - result pending", &callStack)); |
| 134 | else if (!m_eofReceived) |
| 135 | container.SetNoWait(CallStack("WindowsPipeReceiver::GetWaitObjects() - result ready", &callStack)); |
| 136 | } |
| 137 | |
| 138 | unsigned int WindowsPipeReceiver::GetReceiveResult() |
| 139 | { |