Implement UNIX select for WIN32 pipes
-
I want to implement UNIX style select on WIN32 anonymous pipes. The thread should no block on ReadFile when pipe is available.
WaitForSingleObject
andWairForMultipleObjects
don't seem to be working with pipes:confused: Is there a way to achieveselect
functionality in windows for pipes? ARSALAN MALIK -
I want to implement UNIX style select on WIN32 anonymous pipes. The thread should no block on ReadFile when pipe is available.
WaitForSingleObject
andWairForMultipleObjects
don't seem to be working with pipes:confused: Is there a way to achieveselect
functionality in windows for pipes? ARSALAN MALIKCheck out IO Completion Ports. I think there are some Code Project Articles on them with named pipes.
"Just about every question you've asked over the last 3-4 days has been "urgent". Perhaps a little planning would be helpful?"
Colin Angus Mackay in the C# forumled mike
-
Check out IO Completion Ports. I think there are some Code Project Articles on them with named pipes.
"Just about every question you've asked over the last 3-4 days has been "urgent". Perhaps a little planning would be helpful?"
Colin Angus Mackay in the C# forumled mike
-