summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mqueuetimedreceive.c
diff options
context:
space:
mode:
authorSahil Patnayakunii <sahilp@rtems.org>2013-07-24 13:08:37 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-07-24 13:14:28 -0500
commitf74a492cf6100806f0cc93f8c4c452af870a0f72 (patch)
tree2ae49fb50efc61619d60a87996cb8ea0c0209eb6 /cpukit/posix/src/mqueuetimedreceive.c
parentdoc/user/conf.t: Fix SMP_MAXIMUM_PROCESSORS and add Go configuration (diff)
downloadrtems-f74a492cf6100806f0cc93f8c4c452af870a0f72.tar.bz2
POSIX mqueue.h: Add restrict keyword per Single UNIX Specification
Diffstat (limited to 'cpukit/posix/src/mqueuetimedreceive.c')
-rw-r--r--cpukit/posix/src/mqueuetimedreceive.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/src/mqueuetimedreceive.c b/cpukit/posix/src/mqueuetimedreceive.c
index c4868d642d..81dd11a703 100644
--- a/cpukit/posix/src/mqueuetimedreceive.c
+++ b/cpukit/posix/src/mqueuetimedreceive.c
@@ -54,10 +54,10 @@
ssize_t mq_timedreceive(
mqd_t mqdes,
- char *msg_ptr,
+ char *__restrict msg_ptr,
size_t msg_len,
- unsigned int *msg_prio,
- const struct timespec *abstime
+ unsigned int *__restrict msg_prio,
+ const struct timespec *__restrict abstime
)
{
Watchdog_Interval ticks;