How to understand asynchronous io in Windows? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T06:40:51Zhttp://stackoverflow.com/feeds/question/760012http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/760012/how-to-understand-asynchronous-io-in-windows0How to understand asynchronous io in Windows?Jinx2009-04-17T11:05:49Z2009-04-17T18:40:35Z
<p>1.How to understand asynchronous io in Windows??</p>
<p>2.If I write/read something to the file using asynchronous io :</p>
<pre><code>WriteFile();
ReadFile();
WriteFile();
</code></pre>
<p>How many threads does the OS generate to accomplish these task?</p>
<p>Do the 3 task run simultaneously and in multi-threading way
or run one after another just with different order?</p>
<p>3.Can I use multithreading and in each thread using a asynchronous io
to read or write the same file?</p>
http://stackoverflow.com/questions/760012/how-to-understand-asynchronous-io-in-windows/760032#7600320Answer by Nippysaurus for How to understand asynchronous io in Windows?Nippysaurus2009-04-17T11:14:16Z2009-04-17T11:14:16Z<p>I guess it depends which operating system you are using. But you shouldnt have to worry about this anyhow, it is transparent and should not affect how you write your code.</p>
http://stackoverflow.com/questions/760012/how-to-understand-asynchronous-io-in-windows/760044#7600440Answer by tomjen for How to understand asynchronous io in Windows?tomjen2009-04-17T11:19:31Z2009-04-17T11:19:31Z<p>If you use the standard read and write in windows, you don't have to care that the system may not write it immediately, unless you are writing on the command-line and are waiting for the user to type some input. The OS is responsible for ensuring that what you write will eventually be written to the hard drive, and will do a much better job that you can do anyway.</p>
<p>If you are working on some weird asynchronous io, then please reformat your question.</p>
http://stackoverflow.com/questions/760012/how-to-understand-asynchronous-io-in-windows/760045#7600451Answer by graham.reeds for How to understand asynchronous io in Windows?graham.reeds2009-04-17T11:21:13Z2009-04-17T11:21:13Z<p>To your questions:</p>
<blockquote>
<p>How many threads does the OS generate
to accomplish these task?</p>
</blockquote>
<p>Depends if you are using the windows pools, iocp, etc. Generally you decide.</p>
<blockquote>
<p>Do the 3 task run simultaneously and
in multi-threading way or run one
after another just with different
order?</p>
</blockquote>
<p>This depends on your architecture. On a single-cored machine, the 3 tasks would run one after another and the order would be os decided. On a multi-cored machine these might run together, depending on how the OS scheduled the threads.</p>
<blockquote>
<p>3.Can I use multithreading and in each thread using a asynchronous io to read
or write the same file?</p>
</blockquote>
<p>That is out of my knowledge so someone else would need to answer that one.</p>
<p>I suggest getting a copy of <a href="http://rads.stackoverflow.com/amzn/click/0735624240" rel="nofollow">Windows via C/C++</a> as that has a very large chapter on Asynchronous IO.</p>
http://stackoverflow.com/questions/760012/how-to-understand-asynchronous-io-in-windows/760064#7600640Answer by Blank Xavier for How to understand asynchronous io in Windows?Blank Xavier2009-04-17T11:30:13Z2009-04-17T11:40:15Z<blockquote>
<p>1.How to understand asynchronous io in Windows??</p>
</blockquote>
<p>Read the Win32 documentation. Search on the web. Don't expect an answer to such a large, broad question here in SO.</p>
<blockquote>
<p>2.If I write/read something to the file using asynchronous io :</p>
<p>WriteFile();
ReadFile();
WriteFile();</p>
<p>How many threads does the OS generate to accomplish these task?</p>
</blockquote>
<p>I don't think it does. It will re-use existing thread contexts to execute kernel function calls. Basically the OS schedules the work and borrows a thread to do it - which is fine, since the kernel context is always the same.</p>
<blockquote>
<p>3.Can I use multithreading and in each thread using a asynchronous io to read or write
the same file?</p>
</blockquote>
<p>I believe so, yes. I don't know that the order of execution is guaranteed to match the order of submission, in which case you will obtain unpredictable results if you issue concurrent reads/writes on the same byte ranges.</p>
http://stackoverflow.com/questions/760012/how-to-understand-asynchronous-io-in-windows/761685#7616850Answer by a_mole for How to understand asynchronous io in Windows?a_mole2009-04-17T18:40:35Z2009-04-17T18:40:35Z<p>I suggest looking for Jeffery Richter's books on Win32 programming. They are very well-written guides for just this sort of thing.
I think he has a newer book(s?) on C#, so watch out that you don't buy the wrong one.</p>