summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxstack02
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-23 17:17:05 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-23 17:19:08 +0200
commit218286bc055e9d9bcbefd3dfa2b38f92a95b15a6 (patch)
treedfd79ee383ba1192fa1a71d40bd52d5742601b76 /testsuites/psxtests/psxstack02
parentposix: Include missing <stdint.h> (diff)
downloadrtems-218286bc055e9d9bcbefd3dfa2b38f92a95b15a6.tar.bz2
score: Create stack implementation header
Move implementation specific parts of stack.h and stack.inl into new header file stackimpl.h. The stack.h contains now only the application visible API.
Diffstat (limited to 'testsuites/psxtests/psxstack02')
-rw-r--r--testsuites/psxtests/psxstack02/init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxstack02/init.c b/testsuites/psxtests/psxstack02/init.c
index b58d25726e..52cbc6a911 100644
--- a/testsuites/psxtests/psxstack02/init.c
+++ b/testsuites/psxtests/psxstack02/init.c
@@ -19,7 +19,8 @@
#include <pthread.h>
#include <sched.h>
-#include <rtems/posix/pthreadimpl.h> /* for PTHREAD_MINIMUM_STACK_SIZE */
+#include <rtems/posix/pthreadimpl.h>
+#include <rtems/score/stackimpl.h>
/* forward declarations to avoid warnings */
void *POSIX_Init(void *argument);