up vote 0 down vote favorite
share [g+] share [fb]

What happens if I ReadFile() 10 bytes (in overlapped mode without a timeout) but invoke CancelIo() after 5 bytes have been read? The documentation for CancelIo() says that it cancels any pending I/O, but what happens to the 5 bytes already read? Are they lost? Are they re-enqueued so the next time I ReadFile() I'll get them again?

I'm looking for the specification to indicate one way or another. I don't want to rely on empirical evidence.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

According to http://groups.google.ca/group/microsoft.public.win32.programmer.kernel/browse_thread/thread/4fded0ac7e4ecfb4?hl=en

It depends on how the driver writer implemented the device. The exact semantics of cancel on an operation are not defined to that level.

link|improve this answer
feedback

Either it doesn't matter because you are using overlapped I/O or you can just call SetFilePointer manually when you know you've cancelled I/O.

You don't have to rely on undocumented behavior if you just force the issue.

link|improve this answer
"(in overlapped mode without a timeout)" + "you can just call SetFilePointer" --> SetFilePointer works on COM ports? – Windows programmer Aug 19 '09 at 5:45
If it's a COM port then you're already in trouble. – MSN Aug 19 '09 at 16:59
I think Gili already knew about trouble, but wondered what situation to expect in order to recover from it. "I'm looking for the specification to indicate one way or another. I don't want to rely on empirical evidence." If empirical evidence is the only way, too bad. MSN, do you know the answer? – Windows programmer Aug 19 '09 at 23:41
You have to force the issue (i.e., communicate outside the API to guarantee what you need). Clearly you can't expect the API to define that because it would be prohibitive for anyone implementing the file interface, say, in a driver. – MSN Aug 21 '09 at 22:38
"Either it doesn't matter because you are using overlapped I/O"... Why doesn't it matter if you are using overlapped I/O? – Gili Aug 28 '09 at 17:28
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.