summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-21 20:00:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-21 20:00:01 +0000
commitce05fa60132a32d4b1bb8b2af71a03b323c7cd65 (patch)
tree518be220c8d157f18c2aa2328d1096d3a37fa60b
parent2011-08-21 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-ce05fa60132a32d4b1bb8b2af71a03b323c7cd65.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.
-rw-r--r--testsuites/psxtests/ChangeLog5
-rw-r--r--testsuites/psxtests/psxmsgq01/init.c11
2 files changed, 10 insertions, 6 deletions
diff --git a/testsuites/psxtests/ChangeLog b/testsuites/psxtests/ChangeLog
index 675adf608c..307e1d5f1e 100644
--- a/testsuites/psxtests/ChangeLog
+++ b/testsuites/psxtests/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-21 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ PR 1890/cpukit
+ * psxmsgq01/init.c: POSIX says msg_prio is allowed to be NULL.
+
2011-07-31 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1855/cpukit
diff --git a/testsuites/psxtests/psxmsgq01/init.c b/testsuites/psxtests/psxmsgq01/init.c
index ad132a0e43..d48029b34c 100644
--- a/testsuites/psxtests/psxmsgq01/init.c
+++ b/testsuites/psxtests/psxmsgq01/init.c
@@ -789,11 +789,10 @@ void verify_timed_receive_queue(
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(
@@ -806,7 +805,7 @@ void verify_timed_receive_queue(
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;