From 57d8a437ef7298ddc2d860a00feb32e0c0f7c61e Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 20 Dec 2016 11:51:39 -0600 Subject: [PATCH] Fix procfs status for SMP case. --- fs/procfs/fs_procfsproc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fs/procfs/fs_procfsproc.c b/fs/procfs/fs_procfsproc.c index d962559a6a..f15ef0522a 100644 --- a/fs/procfs/fs_procfsproc.c +++ b/fs/procfs/fs_procfsproc.c @@ -316,6 +316,9 @@ static FAR const char *g_statenames[] = "Invalid", "Waiting,Unlock", "Ready", +#ifdef CONFIG_SMP + "Assigned", +#endif "Running", "Inactive", "Waiting,Semaphore",