summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mutex.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-17 14:23:14 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-18 09:58:57 +0200
commit20e239c2f0ced48fb9f8fcf326b84751d061e60e (patch)
tree2b8684fcd9f665177868f8bee915d4a1b564b1e1 /cpukit/posix/src/mutex.c
parentposix: Create mutex implementation header (diff)
downloadrtems-20e239c2f0ced48fb9f8fcf326b84751d061e60e.tar.bz2
score: Create mutex implementation header
Move implementation specific parts of coremutex.h and coremutex.inl into new header file coremuteximpl.h. The coremutex.h contains now only the application visible API.
Diffstat (limited to 'cpukit/posix/src/mutex.c')
-rw-r--r--cpukit/posix/src/mutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/mutex.c b/cpukit/posix/src/mutex.c
index 860588f5ef..31892db473 100644
--- a/cpukit/posix/src/mutex.c
+++ b/cpukit/posix/src/mutex.c
@@ -24,7 +24,7 @@
#include <rtems/system.h>
#include <rtems/config.h>
-#include <rtems/score/coremutex.h>
+#include <rtems/score/coremuteximpl.h>
#include <rtems/score/watchdog.h>
#if defined(RTEMS_MULTIPROCESSING)
#include <rtems/score/mpci.h>