Tagged Questions
4
votes
4answers
368 views
Is this program running Asynchronous or synchrounous?
When I run this program
OVERLAPPED o;
int main()
{
..
CreateIoCompletionPort(....);
for (int i = 0; i<10; i++)
{
WriteFile(..,&o);
OVERLAPPED* po;
...
0
votes
2answers
254 views
A question on IOCP
If I want to use completion port to get information from different thread ,
how can I design the structure of the program?How about the one below?
If I want to use a global function ,how can I set ...