summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/prwlockrdlock.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-01 15:10:08 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 09:08:20 +0200
commit6ca60e5dc94654504dc4c9974733afd0f58d86e3 (patch)
tree7dd74ec5204972683fe5061a631183e9bd10baff /cpukit/posix/src/prwlockrdlock.c
parentscore: Delete Thread_Wait_information::id (diff)
downloadrtems-6ca60e5dc94654504dc4c9974733afd0f58d86e3.tar.bz2
score: Delete MP support for RW locks
MP support was not implemented.
Diffstat (limited to 'cpukit/posix/src/prwlockrdlock.c')
-rw-r--r--cpukit/posix/src/prwlockrdlock.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cpukit/posix/src/prwlockrdlock.c b/cpukit/posix/src/prwlockrdlock.c
index 168a34a8c6..c6bf5fcd9f 100644
--- a/cpukit/posix/src/prwlockrdlock.c
+++ b/cpukit/posix/src/prwlockrdlock.c
@@ -50,10 +50,8 @@ int pthread_rwlock_rdlock(
_CORE_RWLock_Obtain_for_reading(
&the_rwlock->RWLock,
executing,
- *rwlock,
true, /* we are willing to wait forever */
- 0,
- NULL
+ 0
);
_Objects_Put( &the_rwlock->Object );