Process A consists of 3 threads, when a serious exception happens in
thread A, and A is preempted in the exception handler.
Question:
Is there any chance for thread B or C to continue excecution before
scheduler selects A to run again??
Thanks
Tom
Printable View
Process A consists of 3 threads, when a serious exception happens in
thread A, and A is preempted in the exception handler.
Question:
Is there any chance for thread B or C to continue excecution before
scheduler selects A to run again??
Thanks
Tom
On Sep 26, 4:39*pm, lander <lostlander....@gmail.com> wrote:[color=blue]
> Process A consists of 3 threads, when a serious exception happens in
> thread A, and A is preempted in the exception handler.
>
> Question:
> Is there any chance for thread B or C to continue excecution before
> scheduler selects A to run again??[/color]
Sure. In fact, threads B and C might be running on another CPU the
whole time.
DS