Pavel Yosifovich
Pavel Yosifovich
Really sorry for the crazy delay... It seems to work ok if you also set affinity for the process, not just the CPU set
It also seems that at some point the system CPU set is reset, need further testing to understand why.
Thank you for this.
They are unrelated...
Didn't get around to it...
Thanks :) Will fix.
"abstract final" means that no instance could be created and no class could be derived. The class just provides a bunch of static helpers. It's similar to putting them in...
What line of code?
sizeof(data) is incorrect because data is a pointer, whose size is fixed (4 or 8 bytes). sizeof(*data) would be correct, but I think sizeof(ThreadData) is clearer, since this is the...