Community
Participate
Working Groups
I20070501 I had loaded a large number of source projects into my workspace. I put this in the background. While the rebuild was happening, I wanted to apply a patch to one of the already existing source projects. When finishing the apply patch wizard, it blocks and waits for the workspace rebuild. I'm not sure why the tasks are interdependent: the patch is applied against the source. Do we need the compiled form for the AST for patch application?
The build locks all resources. Any attempt to modify a resources will block until the build is complete or yields to the resource modification (there is code in build infrastructure that detects whether other threads are blocked on resource modifications). So, to answer your question, the tasks are interdependent in the sense that the build does not allow others to modify resources while a build is taking place.
That's a shame. A finer grain locking strategy on the part of the builder seems in order.