Re: Thread affinity?

2016-08-21 Thread cpupinner via Digitalmars-d-learn
On Wednesday, 4 December 2013 at 23:23:51 UTC, Rob T wrote: On Wednesday, 4 December 2013 at 08:38:12 UTC, qznc wrote: You should file an issue [0] as this should actually be in core.thread. [0] https://d.puremagic.com/issues/enter_bug.cgi I filed an enhancement request for the thread

Re: Thread affinity?

2013-12-04 Thread qznc
/entry-2254424-setting-thread-affinity-on-windows-in-d/ I can find solutions for pthread coded in C/C++, but I'm not sure how to apply these solutions when using the D Thread class. I may be able hack something out, but I need to be sure it's safe and correct. http://stackoverflow.com/questions

Re: Thread affinity?

2013-12-04 Thread Rob T
On Wednesday, 4 December 2013 at 08:38:12 UTC, qznc wrote: You should file an issue [0] as this should actually be in core.thread. [0] https://d.puremagic.com/issues/enter_bug.cgi I filed an enhancement request for the thread module. Digging deeper, I notice that module

Thread affinity?

2013-12-03 Thread Rob T
In core.thread I don't see a portable way to pin a thread to a specific core, or at least pin the thread to whatever core it is currently running in. I found this solution, but it's for Windows only. http://www.gamedev.net/blog/1140/entry-2254424-setting-thread-affinity-on-windows-in-d/ I