summaryrefslogtreecommitdiffstats
path: root/cpukit/libstdthreads/mtx.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-09-14 16:00:45 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-10-10 07:54:14 +0200
commita2a71b5900b94238d600ca097850e21cb45d1cf8 (patch)
tree027546075f071f8f2b33da05fb663d61a9684209 /cpukit/libstdthreads/mtx.c
parentbuild: Merge librpc/Makefile.am (diff)
downloadrtems-a2a71b5900b94238d600ca097850e21cb45d1cf8.tar.bz2
build: Merge libstdthreads/Makefile.am
Diffstat (limited to 'cpukit/libstdthreads/mtx.c')
-rw-r--r--cpukit/libstdthreads/mtx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libstdthreads/mtx.c b/cpukit/libstdthreads/mtx.c
index 48369c2ed0..27c6ee93c7 100644
--- a/cpukit/libstdthreads/mtx.c
+++ b/cpukit/libstdthreads/mtx.c
@@ -56,7 +56,7 @@ mtx_lock(mtx_t *mtx)
}
int
-mtx_timedlock(mtx_t *restrict mtx, const struct timespec *restrict ts)
+mtx_timedlock(mtx_t *__restrict mtx, const struct timespec *__restrict ts)
{
switch (_Mutex_recursive_Acquire_timed(mtx, ts)) {