summaryrefslogtreecommitdiff
path: root/nuttx/sched/mq_notify.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-05 19:59:10 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-05 19:59:10 +0000
commit4a0b3d5f1c3d9aff64c7029f785b2a310129e7f2 (patch)
treea8895353b5f7c83448e391c614fd4067d600044a /nuttx/sched/mq_notify.c
parentb4739f795b424040fbd1644dca719d537918e575 (diff)
downloadpx4-nuttx-4a0b3d5f1c3d9aff64c7029f785b2a310129e7f2.tar.gz
px4-nuttx-4a0b3d5f1c3d9aff64c7029f785b2a310129e7f2.tar.bz2
px4-nuttx-4a0b3d5f1c3d9aff64c7029f785b2a310129e7f2.zip
Fix banding on the R61580 LCD
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4136 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/mq_notify.c')
-rw-r--r--nuttx/sched/mq_notify.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/nuttx/sched/mq_notify.c b/nuttx/sched/mq_notify.c
index 4ec3d82c9..ce64d5a54 100644
--- a/nuttx/sched/mq_notify.c
+++ b/nuttx/sched/mq_notify.c
@@ -2,7 +2,7 @@
* sched/mq_notify.c
*
* Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -97,17 +97,17 @@
* sigev_value - Value associated with the signal
*
* Return Value:
- * On success mq_notify() returns 0; on error, -1 is returned, with
- * errno set to indicate the error.
+ * On success mq_notify() returns 0; on error, -1 is returned, with
+ * errno set to indicate the error.
*
- * EBADF The descriptor specified in mqdes is invalid.
- * EBUSY Another process has already registered to receive notification
- * for this message queue.
- * EINVAL sevp->sigev_notify is not one of the permitted values; or
- * sevp->sigev_notify is SIGEV_SIGNAL and sevp->sigev_signo is not a
- * valid signal number.
- * ENOMEM
- * Insufficient memory.
+ * EBADF The descriptor specified in mqdes is invalid.
+ * EBUSY Another process has already registered to receive notification
+ * for this message queue.
+ * EINVAL sevp->sigev_notify is not one of the permitted values; or
+ * sevp->sigev_notify is SIGEV_SIGNAL and sevp->sigev_signo is not a
+ * valid signal number.
+ * ENOMEM
+ * Insufficient memory.
*
* Assumptions:
*