* \brief Manually decrement this task's reference count. If the reference * count reaches zero, the task will be dispatched. */
| 287 | * count reaches zero, the task will be dispatched. |
| 288 | */ |
| 289 | PX_INLINE void removeReference() |
| 290 | { |
| 291 | mTm->decrReference(*this); |
| 292 | } |
| 293 | |
| 294 | /** \brief Return the ref-count for this task */ |
| 295 | PX_INLINE int32_t getReference() const |
nothing calls this directly
no test coverage detected