From 25440e70b2045c68e911a5f325132a67c0d20731 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 26 Dec 2011 16:24:43 +0000 Subject: [PATCH] Fix an PIC32 error in scheduling of signal handlers git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4229 42af7a65-404d-4744-a932-0658087f49c3 --- examples/ostest/mqueue.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/ostest/mqueue.c b/examples/ostest/mqueue.c index 95e6bbfc8..39ef76a53 100644 --- a/examples/ostest/mqueue.c +++ b/examples/ostest/mqueue.c @@ -1,8 +1,8 @@ /************************************************************************** * apps/examples/ostest/mqueue.c * - * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved. - * Author: Gregory Nutt + * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved. + * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -219,7 +219,7 @@ static void *receiver_thread(void *arg) } else { - printf("receiver_thread: mq_receive interrupted!\n", i); + printf("receiver_thread: mq_receive interrupted!\n"); } } else if (nbytes != TEST_MSGLEN)