how does this handle the following thing:

Qt Code:
  1. computing very much A
  2. break -> processEvents()
  3. compute something
  4. compute something
  5. compute very much B
  6. continue with A
  7. computing very much A
  8. ..
To copy to clipboard, switch view to plain text mode 


will A continue only after B is finished?
so when i call A in B, then i'll get a recursion?

regards..
aman..