I\'m trying to set core affinity (Thread #1 goes on first core, Thread #2 goes on second core, ...) while using std::thread in C++ 11.
I\'ve already searched around vari
You can get the native handle for the thread with the native_handle function.
The example in the linked reference even uses this to call pthread functions.