Robert Reif reif@earthlink.net writes:
Is there a good reason to statically initialize ntdll locks or can they be initialized like normal locks?
Actually nearly all critical sections in Wine are initialized statically. This improves performance, and avoids having lots of "init" functions called all over the place. I'm not convinced it's worth changing that just to be able to build a list of sections.