Author: zturner0826zturner0826
Date: Jul 15, 2008 20:11
Suppose I issue a request to a file from user mode. WriteFile(), for
example. Say this operation takes a long time to complete, maybe it's
writing a huge amount of data at once. In the middle of the write
operation, the OS pre-empts my thread and schedules something else.
My question is, while the other thread is running, is my write
operation still happening? Or will my write operation momentarily
pause while the other thread is running?
Thanks
|