1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

ps: add state name for STATUS_MBOX_BLOCKED

This commit is contained in:
Martine Lenders 2017-02-14 16:02:27 +01:00
parent c0b9b0fb56
commit 04823b9192

View File

@ -31,7 +31,7 @@
#endif
/* list of states copied from tcb.h */
const char *state_names[] = {
static const char *state_names[] = {
[STATUS_RUNNING] = "running",
[STATUS_PENDING] = "pending",
[STATUS_STOPPED] = "stopped",
@ -41,7 +41,8 @@ const char *state_names[] = {
[STATUS_SEND_BLOCKED] = "bl send",
[STATUS_REPLY_BLOCKED] = "bl reply",
[STATUS_FLAG_BLOCKED_ANY] = "bl anyfl",
[STATUS_FLAG_BLOCKED_ALL] = "bl allfl"
[STATUS_FLAG_BLOCKED_ALL] = "bl allfl",
[STATUS_MBOX_BLOCKED] = "bl mbox",
};
/**