From 89a4cb5a40c675071f2ed2b5efebfe579f3e38a5 Mon Sep 17 00:00:00 2001 From: lixiang Date: Thu, 28 Dec 2023 19:53:31 +0800 Subject: [PATCH] fixed 6f6852b from https://gitee.com/lx_eotk/linux_frame_aware_sched/pulls/144 Modify process died state. Signed-off-by: lixiang --- common/include/rme_constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/include/rme_constants.h b/common/include/rme_constants.h index d9fd4e0..cb09ca6 100644 --- a/common/include/rme_constants.h +++ b/common/include/rme_constants.h @@ -25,7 +25,7 @@ enum class ThreadType { enum class ThreadState { CREATE = 0, - DIED, + DIED = 5, }; enum class WindowState { -- Gitee