I\'m trying to speed up the time taken to compile my application and one thing I\'m investigating is to check what resources, if any, I can add to the build machine to speed thi
Random-pausing will tell you what is your percentage split between CPU and I/O time.
Basically, if you grab 10 random stackshots, and if 80% (for example) of the time is in I/O, then on 8+/-1.3 samples the stack will reach into the system routine that reads or writes a buffer. If you want higher precision, take more samples.