From b512d3d83c03496fc86bb642e3c54d5faa12ceaa Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 16 Oct 2020 14:23:45 +0300 Subject: [PATCH] proc: fix missing include user/signal.h --- sys/thread.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/thread.c b/sys/thread.c index 643fd27..9710a2b 100644 --- a/sys/thread.c +++ b/sys/thread.c @@ -1,6 +1,7 @@ #include "arch/amd64/context.h" #include "sys/mem/vmalloc.h" #include "sys/mem/phys.h" +#include "user/signal.h" #include "user/errno.h" #include "sys/string.h" #include "sys/thread.h"