Other Parts Discussed in Thread: SYSBIOS
Hello
(target C6678, sysbios 6.41.01.36, xdctools 3 30 05 60)
I'm using the Log_write functions to create trace used by System Analyser
It usually looks like this
Log_write1(UIABenchmark_start, "my_trace");
// code
Log_write1(UIABenchmark_stop, "my_trace");
I'm wondering what happens in a multitask context
if a TASK A starts calling "log_write", gets interrupt in the middle of it, a task B starts running and also calls log_write
Would it be an issue ?
In other words, is Log_write interruptible or do I need to protect it ?
Regards,
Clement