summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxmsgq01/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-21 19:59:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-21 19:59:51 +0000
commit08ef1631cf923bf6864751cbed7804847adeaf6c (patch)
treee81a7f3a801cea1be59566f00777810556a6c5fb /testsuites/psxtests/psxmsgq01/init.c
parent2011-08-21 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-08ef1631cf923bf6864751cbed7804847adeaf6c.tar.bz2
2011-08-21 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1890/cpukit * psxmsgq01/init.c: POSIX says msg_prio is allowed to be NULL.
Diffstat (limited to 'testsuites/psxtests/psxmsgq01/init.c')
-rw-r--r--testsuites/psxtests/psxmsgq01/init.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/testsuites/psxtests/psxmsgq01/init.c b/testsuites/psxtests/psxmsgq01/init.c
index 52eb22b90c..d77ddfbf52 100644
--- a/testsuites/psxtests/psxmsgq01/init.c
+++ b/testsuites/psxtests/psxmsgq01/init.c
@@ -1141,11 +1141,10 @@ void verify_timedout_mq_timedreceive(
int is_blocking
)
{
- char message[ 100 ];
- unsigned int priority;
- struct timespec tm;
- struct timeval tv1, tv2, tv3;
- struct timezone tz1, tz2;
+ char message[ 100 ];
+ struct timespec tm;
+ struct timeval tv1, tv2, tv3;
+ struct timezone tz1, tz2;
int status;
printf(
@@ -1158,7 +1157,7 @@ void verify_timedout_mq_timedreceive(
tm.tv_sec = tv1.tv_sec - 1;
tm.tv_nsec = tv1.tv_usec * 1000;
- status = mq_timedreceive( Test_q[ que ].mq, message, 100, &priority, &tm );
+ status = mq_timedreceive( Test_q[ que ].mq, message, 100, NULL, &tm );
gettimeofday( &tv2, &tz2 );
tv3.tv_sec = tv2.tv_sec - tv1.tv_sec;