Hi,
When I debug the project ,I make a breakpoint at the statement which follows the Ipc_start(), that means that I cannot get the return value of the Ipc_star(),
In my c file ,I cannot get the value of status.
what are the possible reasons causing the problems, how can I slove the problem?
thank you
----------------------------------------------------------------------------------------------------------------------------------------------
Int main(Int argc, Char* argv[]) { Int status; /* * Ipc_start() ca+]lls Ipc_attach() to synchronize all remote processors * because 'Ipc.procSync' is set to 'Ipc.ProcSync_ALL' in *.cfg */ #if 1 status = Ipc_start(); printf("%d\n",status); if (status < 0) { System_abort("Ipc_start failed\n"); } #endif BIOS_start(); return (0); } /* * @(#) ti.sdo.ipc.examples.multicore.evm667x; 1, 0, 0, 0,1; 5-22-2012 16:36:06; /db/vtree/library/trees/ipc/ipc-h32/src/ xlibrary */