1
0
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:
Marian Buschsieweke 2019-02-07 21:35:48 +01:00
parent f9ae37572a
commit c700d0439e
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -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",
};
/**