* \brief Manually decrement this task's reference count. If the reference * count reaches zero, the task will be dispatched. */
| 156 | * count reaches zero, the task will be dispatched. |
| 157 | */ |
| 158 | PX_INLINE void removeReference() |
| 159 | { |
| 160 | PX_ASSERT(mTm); |
| 161 | mTm->decrReference( mTaskID ); |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * \brief Return the ref-count for this task |
no test coverage detected