summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/libmisc/stackchk/check.c1
-rw-r--r--cpukit/libmisc/stackchk/stackchk.h2
-rw-r--r--testsuites/libtests/stackchk/blow.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/libmisc/stackchk/check.c b/cpukit/libmisc/stackchk/check.c
index 27fe1aa3bc..dd64968e61 100644
--- a/cpukit/libmisc/stackchk/check.c
+++ b/cpukit/libmisc/stackchk/check.c
@@ -41,6 +41,7 @@
#include <rtems/bspIo.h>
#include <rtems/stackchk.h>
+#include <rtems/score/percpu.h>
#include "internal.h"
/*
diff --git a/cpukit/libmisc/stackchk/stackchk.h b/cpukit/libmisc/stackchk/stackchk.h
index 823c8dfde0..b824057f59 100644
--- a/cpukit/libmisc/stackchk/stackchk.h
+++ b/cpukit/libmisc/stackchk/stackchk.h
@@ -24,7 +24,7 @@
#include <stdbool.h> /* bool */
-#include <rtems/score/percpu.h> /* Thread_Control */
+#include <rtems/score/thread.h> /* Thread_Control */
#include <rtems/bspIo.h>
/**
diff --git a/testsuites/libtests/stackchk/blow.c b/testsuites/libtests/stackchk/blow.c
index 6a378eb54b..e424568fb8 100644
--- a/testsuites/libtests/stackchk/blow.c
+++ b/testsuites/libtests/stackchk/blow.c
@@ -17,6 +17,7 @@
#include <rtems.h>
#include <rtems/stackchk.h>
+#include <rtems/score/percpu.h>
/* forward declarations to avoid warnings */
void b(void);