summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/semtimedwait.c
diff options
context:
space:
mode:
authorSahil Patnayakunii <sahilp@rtems.org>2013-07-24 13:10:02 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-07-24 13:14:29 -0500
commitcc86fe1fd20fc116e7709e9504a4e08418606e8d (patch)
treef4f78ca3dcfd6cdc9802faadadd2333bff6f6706 /cpukit/posix/src/semtimedwait.c
parentPOSIX AIO: Add restrict keyword per Single UNIX Specification (diff)
downloadrtems-cc86fe1fd20fc116e7709e9504a4e08418606e8d.tar.bz2
POSIX Semaphore: Add restrict keyword per Single UNIX Specification
Diffstat (limited to 'cpukit/posix/src/semtimedwait.c')
-rw-r--r--cpukit/posix/src/semtimedwait.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/semtimedwait.c b/cpukit/posix/src/semtimedwait.c
index 6d4157984b..f9e57ecc01 100644
--- a/cpukit/posix/src/semtimedwait.c
+++ b/cpukit/posix/src/semtimedwait.c
@@ -39,8 +39,8 @@
*/
int sem_timedwait(
- sem_t *sem,
- const struct timespec *abstime
+ sem_t *__restrict sem,
+ const struct timespec *__restrict abstime
)
{
Watchdog_Interval ticks;