Tagged Questions
The overlapped-io tag has no wiki summary.
8
votes
1answer
250 views
Explanation for tiny reads (overlapped, buffered) outperforming large contiguous reads?
(apologies for the somewhat lengthy intro)
During development of an application which prefaults an entire large file (>400MB) into the buffer cache for speeding up the actual run later, I tested ...
7
votes
2answers
2k views
c# Named Pipe Asynchronous Peeking
Hey all,
I need to find a way to be notified when a System.IO.Pipe.NamedPipeServerStream opened in asynchronous mode has more data available for reading on it- a WaitHandle would be ideal. I cannot ...
2
votes
3answers
318 views
Is it normal for WSASend to fail during big file transfers?
I need a little help if someone's got a minute.
I've written a web server using IO completion ports, but I am having some trouble sending out large files. Web pages seem to load fine, but during large ...
2
votes
3answers
292 views
Windows NAmed Pipes alternative in Linux
We are porting existing windows code to Linux. We are using ACE as abstraction layer.
We are using windows named pipes for communicating with multiple clients and to perform overlapped operations .
...
1
vote
1answer
64 views
Get Sender's IP Address using Overlapped IO
I know that WSARecvFrom has a parameter which is meant to return the sender's ip address. However, when I use it with overlapped io, the variable that I pass it doesn't get filled.
...
1
vote
2answers
162 views
How to tell when ReadFileEx() overlapped I/O has completed?
HasOverlappedIoCompleted() doesn't work on asynchronous I/O begun with ReadFileEx() and WriteFileEx(). The code snippet at the bottom demonstrates this. In this example, ReadFileEx() reads from a pipe ...
1
vote
0answers
86 views
Why CompletionKey in I/O completion port?
Remark from MSDN about CompletionKey in CreateIoCompletionPort function:
Use the CompletionKey parameter to help your application track which
I/O operations have completed. This value is not ...
1
vote
2answers
145 views
TCP connections with overlapped I/O
Is it possible to initiate a TCP connection request with overlapped I/O, and cancel it before the connection has been completed in Windows? I need to support at least Windows XP SP2.
1
vote
2answers
173 views
Writing synchronously to a file opened with FILE_FLAG_OVERLAPPED
I have opened a file using
HANDLE handle=
CreateFileW(
fileName, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
FILE_FLAG_OVERLAPPED, NULL);
The file handle is then ...
1
vote
1answer
70 views
Winsock2 data loss when in debugger
i am using Winsock2 in conjunction with overlapped I/O. This means i am calling WSARecv with a WSAOVERLAPPED structure and later i wait with WSAWaitForMultipleEvents for data.
I made the strange ...
1
vote
1answer
251 views
Using overlapped IO for console input?
I'm attempting to use overlapped IO to read input from the console by opening CONIN$ with the FILE_FLAG_OVERLAPPED flag. However, ReadFile blocks when I use it, even with an OVERLAPPED parameter.
...
1
vote
2answers
253 views
When are IO completion port packets sent and when not?
I'm currently working on an IPC mechanism based on named pipes using a IO completion port.
Unfortunately I have some troubles with the msdn documentation because it's quite unclear to me in which ...
1
vote
1answer
383 views
hEvent member in OVERLAPPED Win32 structure
When asynchronous I/O (or "overlapped" I/O in Win32 jargon) is used, we need to deal with the OVERLAPPED structure and his hEvent member. If the I/O function will delay the read or write operation, we ...
1
vote
3answers
601 views
According to MSDN ReadFile() Win32 function may incorrectly report read operation completion. When?
The MSDN states in its description of ReadFile() function:
If hFile is opened with FILE_FLAG_OVERLAPPED, the lpOverlapped parameter must point to a valid and unique OVERLAPPED structure, otherwise ...
1
vote
2answers
482 views
Reading a whole file on a network drive the fast way (Windows, C/C++, C#, …)
Lately I've been having problems reading big files on a network drive and I just can't pinpoint what I may be doing wrong. I tried both in C++ (Unmanaged) and in C# and had about the same performances ...
1
vote
0answers
490 views
Canceling a WinUSB asynchronous control transfer
For a user application (not a driver) using WinUSB, I use WinUsb_ControlTransfer in combination with overlapped I/O to asynchronously send a control message. Is it possible to cancel the asynchronous ...
1
vote
2answers
248 views
Async IO across processes
All:
I am writing a logging solution. One of the available log endpoints is a text file. Suppose I wanted to write to that file from multiple processes: I could open it shared, and use a named ...
1
vote
1answer
1k views
Serial port and handling errors during overlapped I/O operations
I've been doing serial communications lately so I prepared a class being a simple interface to all those Windows API functions responsible for reading, writing, etc. All I/O operations inside this ...
0
votes
1answer
80 views
Why would an Overlapped call to recv return ERROR_NO_MORE_ITEMS(259)?
I did a few tests with an I/O-Completion port and winsock sockets.
I encountered, that sometimes after I received data from a connection and then adjacently call WSARecv again on that socket it ...
0
votes
3answers
200 views
Winsock: Overlapped AcceptEx indicates a new connection while no client connecting
In my program I am using the overlapped version of AcceptEx() to accept new connections.
After a new connection has been accepted, the programm initiates another overlapped call to AcceptEx() for ...
0
votes
0answers
55 views
NetTcpBinding with WSASend in WCF
We use NetTcpBinding to transfer large binary files from the WCF service to clients in the form of a series of callbacks.
In hopes of speeding up the transfer times, does anyone know if WSASend() can ...
0
votes
3answers
439 views
WaitCommEvent Fails Invalid Parameter on Second Pass
My application uses serial I/O with overlapped events. For some reason, ::WaitCommEvent fails consistently on the second pass through the loop with ERROR_INVALID_PARAMETER. If anyone can explain ...
0
votes
1answer
196 views
Error handling in overlapped socket IO
Can anyone please suggest a reliable way to handle system errors in case of using overlapped socket IO and IOCP?
MSDN description is cumbersome on this aspect. It says that for ...
0
votes
2answers
48 views
What sort of things can cause a whole system to appear to hang for 100s-1000s of milliseconds?
I am working on a Windows game and while rendering, some computers will experience intermittent pauses ("hitches" for lack of a better term). When profiled they appear in seemingly random places in ...
0
votes
3answers
458 views
Application Not Receiving Serial Data from COM Port - C++
My application is not properly receiving data from the COM port. This used to work. I don't know what happened. I know that the proper data is being sent/received over the line because I can see it ...
0
votes
2answers
240 views
AcceptEx returns 1022 (WSAEINVAL)… What did I do wrong?
I am trying to code a small test-server for completion ports.
But when I try to call AcceptEx... it always returns WSAEINVAL as the winsock error code...
I don´t really get what was my mistake
...
0
votes
0answers
382 views
GetOverlappedResult finished when IO_PENDING
fSuccess = GetOverlappedResult(
this->m_Pipe[pipeNum].hPipeInst, // handle to pipe
&this->m_Pipe[pipeNum].oOverlap, // OVERLAPPED structure
&cbRet, ...
0
votes
3answers
955 views
WriteFile() call works on x86, but not x64. Getting error code 6 — The handle is invalid using VB.NET
I am using CreateFile, WriteFile and ReadFile API calls to write some data to a USB device. The code I have works perfectly on 32 bit systems. CreateFile gets a handle to the device, pass that handle ...
0
votes
1answer
224 views
Calls to ReadFile return ERROR_WORKING_SET_QUOTA
The program runs fine for a few minutes and then ReadFile starts failing with error code ERROR_WORKING_SET_QUOTA.
I'm using ReadFile with overlapped I/O like so:
while (continueReading)
{
BOOL ...
0
votes
2answers
131 views
WSASYSCALLFAILURE with overlapped IO on Windows XP
I hit a bug in my code which uses WSARecv and WSAGetOverlapped result on an overlapped socket. Under heavy load, WSAGetOverlapped returns with WSASYSCALLFAILURE ('A system call that should never fail ...
0
votes
1answer
215 views
Timer that supports overlapped I/O (for IOCP)?
I need to add timers support in an application based on I/O Completion Ports (IOCP). I would like to avoid the use of a specific thread to manage timers.
On Linux, you can create a timer that ...
0
votes
4answers
247 views
Is it possible to change HANDLE that has been opened for synchronous I/O to be opened for asynchronous I/O during its lifetime?
Most of my daily programming work in Windows is nowadays around I/O operations of all kind (pipes, consoles, files, sockets, ...). I am well aware of different methods of reading and writing from/to ...
0
votes
4answers
1k views
C# and native overlapped I/O
I have a C dll that I'm wrapping so that I can call it from C#. One function uses events to notify you when a state has changed, and figuring out to deal with it took some digging. It seems to be ...
0
votes
1answer
1k views
Boost asio async vs blocking reads, udp speed/quality
I have a quick and dirty proof of concept app that I wrote in C# that reads high data rate multicast UDP packets from the network. For various reasons the full implementation will be written in C++ ...
-1
votes
1answer
216 views
Asynchronous NtQueryDirectoryFile?
Has anyone managed to figure out how asynchronous calls to NtQueryDirectoryFile work?
By an asynchronous call, I mean calling NtQueryDirectoryFile on directories not opened with ...