mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys/ps: Fixed stringification
Added missing string for STATUS_COND_BLOCKED, so that the shell command "ps" no longer crashes when a thread has this state.
This commit is contained in:
parent
f9ae37572a
commit
c700d0439e
@ -40,6 +40,7 @@ static const char *state_names[] = {
|
||||
[STATUS_FLAG_BLOCKED_ANY] = "bl anyfl",
|
||||
[STATUS_FLAG_BLOCKED_ALL] = "bl allfl",
|
||||
[STATUS_MBOX_BLOCKED] = "bl mbox",
|
||||
[STATUS_COND_BLOCKED] = "bl cond",
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user