summaryrefslogtreecommitdiff
path: root/apps/examples/ostest/timedmqueue.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-26 23:11:02 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-26 23:11:02 +0000
commit983546a83ac3d4d6e80f9801d17fb3cebccbe9ce (patch)
tree60359e586dfdea37b803c0ca23f2adf9111ac1d4 /apps/examples/ostest/timedmqueue.c
parent9aa229270fa7eb834950b6648bbe077fc8fecb62 (diff)
downloadnuttx-983546a83ac3d4d6e80f9801d17fb3cebccbe9ce.tar.gz
nuttx-983546a83ac3d4d6e80f9801d17fb3cebccbe9ce.tar.bz2
nuttx-983546a83ac3d4d6e80f9801d17fb3cebccbe9ce.zip
Fixes to get clean i.MXADS build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3533 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/ostest/timedmqueue.c')
-rw-r--r--apps/examples/ostest/timedmqueue.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/examples/ostest/timedmqueue.c b/apps/examples/ostest/timedmqueue.c
index 49fe1c4c6..84b8913b2 100644
--- a/apps/examples/ostest/timedmqueue.c
+++ b/apps/examples/ostest/timedmqueue.c
@@ -142,19 +142,19 @@ static void *sender_thread(void *arg)
for (i = 0; i < TEST_SEND_NMSGS; i++)
{
- struct timespec time;
- status = clock_gettime(CLOCK_REALTIME, &time);
+ struct timespec ts;
+ status = clock_gettime(CLOCK_REALTIME, &ts);
if (status != 0)
{
printf("sender_thread: ERROR clock_gettime failed\n");
}
- time.tv_sec += 5;
+ ts.tv_sec += 5;
/* The first TEST_SEND_NMSGS-1 send should succeed. The last
* one should fail with errno == ETIMEDOUT
*/
- status = mq_timedsend(mqfd, msg_buffer, TEST_MSGLEN, 42, &time);
+ status = mq_timedsend(mqfd, msg_buffer, TEST_MSGLEN, 42, &ts);
if (status < 0)
{
if (i == TEST_SEND_NMSGS-1 && errno == ETIMEDOUT)
@@ -232,20 +232,20 @@ static void *receiver_thread(void *arg)
for (i = 0; i < TEST_RECEIVE_NMSGS; i++)
{
- struct timespec time;
- int status = clock_gettime(CLOCK_REALTIME, &time);
+ struct timespec ts;
+ int status = clock_gettime(CLOCK_REALTIME, &ts);
if (status != 0)
{
printf("sender_thread: ERROR clock_gettime failed\n");
}
- time.tv_sec += 5;
+ ts.tv_sec += 5;
/* The first TEST_SEND_NMSGS-1 send should succeed. The last
* one should fail with errno == ETIMEDOUT
*/
memset(msg_buffer, 0xaa, TEST_MSGLEN);
- nbytes = mq_timedreceive(mqfd, msg_buffer, TEST_MSGLEN, 0, &time);
+ nbytes = mq_timedreceive(mqfd, msg_buffer, TEST_MSGLEN, 0, &ts);
if (nbytes < 0)
{
if (i == TEST_SEND_NMSGS-1 && errno == ETIMEDOUT)