mutex_state


mutex_state(m)
      

Return information about the state of mutex m.

Possible states are:

  1. Task T: the mutex is in the locked/owned state and task T is the owner of the mutex.
  2. 'not_owned: the mutex is in the locked/not-owned state.
  3. 'abandoned: the mutex is in the unlocked/abandoned state.
  4. 'not_abandoned: the mutex is in the unlocked/not-abandoned state.

Also see:

mutex_lock
mutex_unlock


Core Module Index | Contents