The overlapped-io tag has no wiki summary.
0
votes
0answers
14 views
Why does GetOverlappedResult need the file handle?
Why does GetOverlappedResult need a file handle?
It seems like WaitForSingleObject(overlapped->hEvent) should be enough to wait on the event so that the overlapped I/O finishes, so what does ...
2
votes
2answers
52 views
Why is the callback given to ReadFileEx() not receiving the correct OVERLAPPED structure? [closed]
For some reason, my callback isn't receiving the address of the correct OVERLAPPED structure after a call to ReadFileEx. What can cause this?
Update -- example:
#include <stdio.h>
#include ...
0
votes
0answers
14 views
Scalable network I/O
I've previously had to deal with fairly low numbers of concurrent network I/O requests (on the order of 20-30). I now have a requirement to eek out as much performance as possible to allow tens of ...
1
vote
2answers
145 views
Overlapped IO or file mapping?
In a Windows application I have a class which wraps up a filename and a buffer. You construct it with a filename and you can query the object to see if the buffer is filled yet, returning nullptr if ...
1
vote
0answers
25 views
What scenarios would NativeOverlapped or System.Threading.Overlapped be useful in PFX IOTaskScheduler?
I'm looking at the PFX team's Parallel Extensions Extras DLL and see an IOTaskScheduler that uses NativeOverlapped, and System.Threading.Overlapped methods.
Since there isn't much documentation on ...
0
votes
1answer
182 views
Asynchronous I/O callback method concurrency
I've implemented Asynchronous I/O with a callback where I'm worried about concurrency. I contest to you that since I'm always working with the same file and the OS file physical I/O is fundamentally a ...
0
votes
1answer
102 views
How to get the number of bytes read from a pending or aborted overlapped ReadFile operation
One can use the GetOverlappedResult() function to get the number of read bytes from a successfull overlapped (asynchronous) ReadFile() operation.
I can't find a way to get the number of read bytes ...
0
votes
0answers
64 views
Using thread pool through GetQueuedCompletionStatus in Overlapped I/O of WSA
DWORD WINAPI thread(LPVOID param)
{
GetQueuedCompletionStatus(port, bytes, key, overlapped, INFINITE)
...
}
Above is much basic pseudo code for thread which awaits the completion of ...
1
vote
1answer
95 views
Overlapped IO in wxWidgets application
I'm working on a Windows-only wxWidgets GUI application that shall receive asynchronous notifications from a service process via a named pipe. I would like to avoid spawning a separate thread for pipe ...
1
vote
1answer
157 views
ConnectEx requires the socket to be “initially bound”, but to what?
The ConnectEx function requires an "unconnected, previously bound socket". Indeed, if I omit the bind step in my example (see below), ConnectEx fails with WSAEINVAL.
Here's my current understanding: ...
1
vote
1answer
245 views
Is there really no asynchronous block I/O on Linux?
Consider an application that is CPU bound, but also has high-performance I/O requirements.
I'm comparing Linux file I/O to Windows, and I can't see how epoll will help a Linux program at all. The ...
0
votes
0answers
87 views
Heap corruption when using multithreaded OVERLAPPED I/O in Windows
I am writing a driver test program for a Windows driver we're building to test some new IO features and the test uses OVERLAPPED IO. A high-level description of the test is as follows:
Main thread:
...
1
vote
4answers
114 views
using overlapped I/O conflicts with c++ D'tor
I'm writing a single-client (for now) server that has a main loop that interpert client request , and dispatces a proper handler.
for some taks, I'll like to use MS overlapped I/O (it's for windows ...
1
vote
1answer
544 views
Non blocking sockets with overlapped I/O
I'm trying to work myself through the socket jungle and came across non blocking sockets with overlapped I/O. I have three books at home which only mention this concept but don't really explain it or ...
0
votes
0answers
188 views
Potential kind of asynchronous (overlapped) I/O implementation in Windows
I would like to discuss potential kind of asynchronous (Overlapped) I/O implementations in Windows, because there are many ways to implement this.
Overlapped I/O in Windows provides the ability to ...
0
votes
1answer
32 views
Event triggered Window Message
Is there a way to generate a Window message when an Event is set? I want to setup an overlapped I/O operation, so it is not blocking, but I would like not to poll its status. I know I can use a ...
1
vote
1answer
267 views
WIN32 Socket API: Canceling Send/Recv on socket using event-based completion notification
using socket with the overlapped operation selected the event-based completion notification;
Have 2 events, one for data, the other to cancel long send/recv:
HANDLE events[] = { m_hDataEvent, ...
1
vote
1answer
95 views
How do you asynchronously resolve host names to IP addresses?
How do you asynchronously resolve host names to IP addresses, preferably with overlapped I/O? GetAddrInfoEx does not support overlapped I/O in Windows 7 and earlier.
I am using native C++.
1
vote
1answer
349 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
1k 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
308 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 ...
2
votes
2answers
527 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.
0
votes
1answer
286 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
873 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 ...
2
votes
2answers
772 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
88 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 ...
0
votes
3answers
1k 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
342 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 ...
12
votes
1answer
621 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 ...
0
votes
1answer
413 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 ...
1
vote
2answers
54 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
876 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 ...
1
vote
1answer
721 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.
...
0
votes
2answers
501 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
702 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
2k 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 ...
2
votes
3answers
611 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 ...
3
votes
3answers
623 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 .
...
0
votes
1answer
458 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
218 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 ...
1
vote
1answer
483 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 ...
1
vote
2answers
551 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
670 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 ...
2
votes
5answers
432 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 ...
2
votes
4answers
890 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
669 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
706 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
4answers
2k 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 ...
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 ...
1
vote
2answers
351 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 ...