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.
This commit is contained in:
Sebastian Huber
2013-07-23 17:17:05 +02:00
parent f41eeb030b
commit 218286bc05
13 changed files with 39 additions and 30 deletions

View File

@@ -17,7 +17,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);