我想重新实现vxWorks函数taskLock()和taskUnlock()。
以下是vxWorks函数的原始描述。
* taskUnlock - enable task rescheduling
*
* This routine decrements the preemption lock count. Typically this call is
* paired with taskLock() and concludes a critical section of code.
* Preemption will not be unlocked until taskUnlock() has been called as many
* times as taskLock(). When the lock count is decremented to zero, any tasks
* that were eligible to preempt the current task will execute.
*
* The taskUnlock() routine is not callable from interrupt service routines.
我使用pthreads重新实现vxWorks任务。那么有可能这样做吗?
如果我理解正确的话。如果函数调用taskLock,则在调用taskunlock之前不会中断以下代码。
我没有在网上找到解决方案。
答案 0 :(得分:2)
来自v2lin Project on sourceforge.net/ taskLock评论:
taskLock - 'locks the scheduler' to prevent preemption of the current task
by other task-level code. Because we cannot actually lock the
scheduler in a pthreads environment, we temporarily set the
dynamic priority of the calling thread above that of any other
thread, thus guaranteeing that no other tasks preempt it.
因为我们无法在pthreads环境中实际锁定调度程序