I'm moving some DSP/BIOS code to SYS/BIOS 6.33.
I can't seem to locate the equivalent of ATM_oru().
Or any atomic functions for that matter.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I'm moving some DSP/BIOS code to SYS/BIOS 6.33.
I can't seem to locate the equivalent of ATM_oru().
Or any atomic functions for that matter.
Andrew,
The ATM APIs were a convenience but they are no longer part of SYSBIOS (Not exactly sure why?)
You can achieve the same functionality by placing Hwi_disable/Hwi_restore around the code that needs to be atomic.
or you can implement you own atomic functions. I've included a copy of the ATM code here.
Judah