Kjetil S. Matheussen schrieb:
How about changing sys_lock to something like this:
void sys_lock(){ if(pd_is_running_realtime() && caller_is_not_running_realtime()){ post("Error! You must run your thread with realtime priority to be allowed to call sys_lock. Period!"); abort(); } ... }
What would be gained by that?
greetings, Thomas