I was wondering if there's any "quick-hack" way to do the parsing in the *main* thread, because I've seen no other way of profiling. If anybody knows a way, I'd really appreciate it.
Thanks!
Ah, I found the way! :)
parser.cpp: 697
#if 1
thread->Parse();
#else
m_Pool.AddTask(thread, true);
#endif
If i want to stop profiling, i just put a 0 after the #if :)