1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #5481 from chrysn-pull-requests/ps-flag-names

sys: ps: display waiting for flags
This commit is contained in:
Kaspar Schleiser 2016-05-31 19:25:15 +02:00
commit 718b7d8109

View File

@ -39,7 +39,9 @@ const char *state_names[] = {
[STATUS_MUTEX_BLOCKED] = "bl mutex",
[STATUS_RECEIVE_BLOCKED] = "bl rx",
[STATUS_SEND_BLOCKED] = "bl send",
[STATUS_REPLY_BLOCKED] = "bl reply"
[STATUS_REPLY_BLOCKED] = "bl reply",
[STATUS_FLAG_BLOCKED_ANY] = "bl anyfl",
[STATUS_FLAG_BLOCKED_ALL] = "bl allfl"
};
/**