Trying to execute a thread in another core, i use java.util.concurrent.executor
I dont know if its enough to make the thread running in another core so, i want to know in witch core every thread is executed.
Any idea?
Executor executor = Executors.newSingleThreadExecutor();
executor.execute(new Runnable() {
//some work
});