Tagged Questions
4
votes
4answers
368 views
Is this program running Asynchronous or synchrounous?
When I run this program
OVERLAPPED o;
int main()
{
..
CreateIoCompletionPort(....);
for (int i = 0; i<10; i++)
{
WriteFile(..,&o);
OVERLAPPED* po;
...
2
votes
1answer
405 views
CreateFile() returns INVALID_HANDLE_VALUE but GetLastError() is ERROR_SUCCESS
I am opening a serial port using CreateFile(). I've got a testcase (too complicated to redistribute) that consistently causes CreateFile() to return INVALID_HANDLE_VALUE and GetLastError() to return ...
1
vote
1answer
87 views
CloseHandle() returns before the serial port is actually closed
I'm pulling my hair trying to figure out when a serial port finishes closing so I can reopen it. It turns out that CloseHandle() returns before the port is actually unlocked.
I am opening a serial ...
1
vote
1answer
371 views
Async operations with I/O Completion Ports return 0 bytes transferred
Asynchronous operations with I/O Completion Ports return 0 bytes transferred, although the I/O operations work as expected (my read buffers become full).
BYTE buffer[1024] = {0};
OVERLAPPED o = {0};
...
0
votes
2answers
161 views
Is it possible to not receive a completion for a WSASend call?
Like the title says, is it possible for a successful WSASend call on a socket associated with an I/O completion port to not post a completion for any reason other than the thread ending?
I have a ...
0
votes
3answers
329 views
TCP IOCP won't receive after acceptex
I'm trying to write an IOCP server. Basically, I have it accepting new connections. For the purpose of my testing, I'm running and connecting to 127.0.0.1.
I create the pseudo socket prior to ...
0
votes
1answer
145 views
TransmitFile + SChannel
I'm using the TransmitFile API with I/O completion ports for an efficient multithreaded file server on Windows.
This all works fine, but I've now also implemented secure sockets using SChannel. ...
0
votes
4answers
607 views
Is is possible to use IOCP (or other API) in Reactor-style operations?
Is there any scalable Win32 API (like IOCP not like select) that gives you reactor style
operations on sockets? AFAIK IOCP allows you to receive notification on completed operations
like data read or ...