vote up 0 vote down star

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.

flag

2 Answers

vote up 1 vote down check

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|flag
vote up 0 vote down

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|flag
"(in overlapped mode without a timeout)" + "you can just call SetFilePointer" --> SetFilePointer works on COM ports? – Windows programmer Aug 19 at 5:45
If it's a COM port then you're already in trouble. – MSN Aug 19 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 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 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 at 17:28
show 1 more comment

Your Answer

Get an OpenID
or
never shown

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