AM5748: How to debug the SMP between A15 cores

Part Number: AM5748
Other Parts Discussed in Thread: SYSBIOS,

Hello,

We are trying to implement SMP mode between the two A15 cores by giving the affinity as 0 and 1 for the tasks indicating that the tasks should run in the respective core.We included SMP mode in the cfg file by adding the lines

var SysMin = xdc.useModule('ti.sysbios.smp.SysMin');
SysMin.bufSize = 0x1000;
SysMin.flushAtExit = false;

var System = xdc.useModule('xdc.runtime.System');
System.SupportProxy = SysMin;


BIOS.smpEnabled = true;
var Core = xdc.useModule('ti.sysbios.family.arm.a15.smp.Core');
Core.numCores = 2;

We are trying to find out the task running in the specific core.Can anyone suggest any method to indicate that the task in running in the respective core and how to get to know that SMP mode is working.

Thanks,

Anila