22.05.2013, 16:38
Quote:
How are you doing on the lock-free containers front? Even just replacing the Mutex with a Critical Section will make a huge difference.
|
Quote:
Good job Dan, keep on going! Did you've done your tests on a Windows or a Linux machine?
I think I'll have to refactor most of the threading code in BlueG's/my plugin. True story, already did that in BlueG's plugin (but currently not pushed to SVN). Critical Sections are almost 100 times faster than Mutexes, but unfortunately this speed improvement works only on Windows. |
Код:
Critical Sections - 8546 ms Mutexes - 14088 ms