Is there any way to log the core allocation details for every thread in a specific process?
e.g let there be a process P which spwans threads th1,th2 and th3The Android governor will schedule each thread to a particular core( A high performance core or a high efficiency core) according to the Big.Little architecture
is there any way to log all the allocation decisions for the threads in roughly a manner like:
at time t1 thread th1 allocated to core1, thread th2 allocated to core2,thread th3 allocated to core4
at time t2 thread th1 allocated to core2, thread th2 allocated to core1,thread th3 allocated to core4and so on...