I'm using CCSv5, SysBios 6.33, NDK 2.21. I'm trying to install taskCreate, taskDelete and taskExit hooks. I haven't found a way to do this with the GUI, so I added the following lines to the .cfg file by hand:
/*
* Hand addition to try to get hooks in for task create/delete/exit
*/
var hooks = new Task.HookSet();
hooks.createFxn = '&insertTaskTrack';
hooks.deleteFxn = '&deleteTaskTrack';
hooks.exitFxn = '&exitTaskTrack';
Task.addHookSet(hooks);
After adding these lines to the .cfg file, I can see the hooks showing up in the XGCONF/Task/Advanced tab, but they aren't getting called.
If there were a way to do this with the GUI, I would prefer it, but I would settle for anything that can make the hooks work. Any ideas?