summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-10-05 12:03:31 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-10-05 12:03:31 -0600
commit414f2e9107f07a2c06460e0cd3c2fcc3961fd229 (patch)
tree8a31c5a6650b65b378a12a850ec27564422cc3c9
parent1f80e7aaf79c7320e070aa8d70e37f3a93ea0b8d (diff)
downloadnuttx-414f2e9107f07a2c06460e0cd3c2fcc3961fd229.tar.gz
nuttx-414f2e9107f07a2c06460e0cd3c2fcc3961fd229.tar.bz2
nuttx-414f2e9107f07a2c06460e0cd3c2fcc3961fd229.zip
Clean up queue files so that they look more like others
-rw-r--r--nuttx/libc/queue/dq_addafter.c23
-rw-r--r--nuttx/libc/queue/dq_addfirst.c20
-rw-r--r--nuttx/libc/queue/dq_addlast.c21
-rw-r--r--nuttx/libc/queue/dq_rem.c21
-rw-r--r--nuttx/libc/queue/dq_remfirst.c21
-rw-r--r--nuttx/libc/queue/sq_addafter.c23
-rw-r--r--nuttx/libc/queue/sq_addfirst.c23
-rw-r--r--nuttx/libc/queue/sq_addlast.c21
-rw-r--r--nuttx/libc/queue/sq_rem.c20
-rw-r--r--nuttx/libc/queue/sq_remafter.c24
-rw-r--r--nuttx/libc/queue/sq_remfirst.c23
-rw-r--r--nuttx/libc/queue/sq_remlast.c20
12 files changed, 104 insertions, 156 deletions
diff --git a/nuttx/libc/queue/dq_addafter.c b/nuttx/libc/queue/dq_addafter.c
index e4d1abf63..e4965c802 100644
--- a/nuttx/libc/queue/dq_addafter.c
+++ b/nuttx/libc/queue/dq_addafter.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/dq_addafter.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,30 +31,29 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Compilation Switches
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: dq_addafter
*
* Description:
- * dq_addafter function adds 'node' after 'qqqq' in the
- * 'queue.'
+ * dq_addafter function adds 'node' after 'prev' in the 'queue.'
*
- ************************************************************/
+ ****************************************************************************/
void dq_addafter(FAR dq_entry_t *prev, FAR dq_entry_t *node,
dq_queue_t *queue)
diff --git a/nuttx/libc/queue/dq_addfirst.c b/nuttx/libc/queue/dq_addfirst.c
index 56767b928..bb49de72f 100644
--- a/nuttx/libc/queue/dq_addfirst.c
+++ b/nuttx/libc/queue/dq_addfirst.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/dq_addfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,29 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: dq_addfirst
*
* Description:
* dq_addfirst affs 'node' at the beginning of 'queue'
*
- ************************************************************/
+ ****************************************************************************/
void dq_addfirst(FAR dq_entry_t *node, dq_queue_t *queue)
{
diff --git a/nuttx/libc/queue/dq_addlast.c b/nuttx/libc/queue/dq_addlast.c
index 3ef08abd0..a18ec9083 100644
--- a/nuttx/libc/queue/dq_addlast.c
+++ b/nuttx/libc/queue/dq_addlast.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/dq_addlast.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,29 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: dq_addlast
*
* Description
* dq_addlast adds 'node' to the end of 'queue'
*
- ************************************************************/
+ ****************************************************************************/
void dq_addlast(FAR dq_entry_t *node, dq_queue_t *queue)
{
@@ -71,4 +67,3 @@ void dq_addlast(FAR dq_entry_t *node, dq_queue_t *queue)
queue->tail = node;
}
}
-
diff --git a/nuttx/libc/queue/dq_rem.c b/nuttx/libc/queue/dq_rem.c
index db20762c7..9d0e84cbe 100644
--- a/nuttx/libc/queue/dq_rem.c
+++ b/nuttx/libc/queue/dq_rem.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/dq_rem.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,29 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: dq_rem
*
* Descripton:
* dq_rem removes 'node' from 'queue'
*
- ************************************************************/
+ ****************************************************************************/
void dq_rem(FAR dq_entry_t *node, dq_queue_t *queue)
{
@@ -81,4 +77,3 @@ void dq_rem(FAR dq_entry_t *node, dq_queue_t *queue)
node->flink = NULL;
node->blink = NULL;
}
-
diff --git a/nuttx/libc/queue/dq_remfirst.c b/nuttx/libc/queue/dq_remfirst.c
index e87acc338..d030f9643 100644
--- a/nuttx/libc/queue/dq_remfirst.c
+++ b/nuttx/libc/queue/dq_remfirst.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/dq_remfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,29 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: dq_remfirst
*
* Description:
* dq_remfirst removes 'node' from the head of 'queue'
*
- ************************************************************/
+ ****************************************************************************/
FAR dq_entry_t *dq_remfirst(dq_queue_t *queue)
{
@@ -79,4 +75,3 @@ FAR dq_entry_t *dq_remfirst(dq_queue_t *queue)
return ret;
}
-
diff --git a/nuttx/libc/queue/sq_addafter.c b/nuttx/libc/queue/sq_addafter.c
index 5d47feba0..828581a2f 100644
--- a/nuttx/libc/queue/sq_addafter.c
+++ b/nuttx/libc/queue/sq_addafter.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/sq_addafter.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,30 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: sq_addafter.c
*
* Description:
- * The sq_addafter function adds 'node' after 'prev' in the
- * 'queue.'
+ * The sq_addafter function adds 'node' after 'prev' in the 'queue.'
*
- ************************************************************/
+ ****************************************************************************/
void sq_addafter(FAR sq_entry_t *prev, FAR sq_entry_t *node,
sq_queue_t *queue)
diff --git a/nuttx/libc/queue/sq_addfirst.c b/nuttx/libc/queue/sq_addfirst.c
index 962486154..a00841cfa 100644
--- a/nuttx/libc/queue/sq_addfirst.c
+++ b/nuttx/libc/queue/sq_addfirst.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/sq_addfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,30 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: sq_addfirst
*
* Description:
- * The sq_addfirst function places the 'node' at the head
- * of the 'queue'
+ * The sq_addfirst function places the 'node' at the head of the 'queue'
*
- ************************************************************/
+ ****************************************************************************/
void sq_addfirst(FAR sq_entry_t *node, sq_queue_t *queue)
{
diff --git a/nuttx/libc/queue/sq_addlast.c b/nuttx/libc/queue/sq_addlast.c
index faa07efb5..e2885a061 100644
--- a/nuttx/libc/queue/sq_addlast.c
+++ b/nuttx/libc/queue/sq_addlast.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/sq_addlast.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,29 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: sq_addlast
*
* Description:
* The sq_addlast function places the 'node' at the tail of
* the 'queue'
- ************************************************************/
+ ****************************************************************************/
void sq_addlast(FAR sq_entry_t *node, sq_queue_t *queue)
{
@@ -69,4 +65,3 @@ void sq_addlast(FAR sq_entry_t *node, sq_queue_t *queue)
queue->tail = node;
}
}
-
diff --git a/nuttx/libc/queue/sq_rem.c b/nuttx/libc/queue/sq_rem.c
index 720be182c..6d234e6b3 100644
--- a/nuttx/libc/queue/sq_rem.c
+++ b/nuttx/libc/queue/sq_rem.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/sq_rem.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,29 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: sq_rem
*
* Description:
* sq_rem removes a 'node' for 'queue.'
*
- ************************************************************/
+ ****************************************************************************/
void sq_rem(FAR sq_entry_t *node, sq_queue_t *queue)
{
diff --git a/nuttx/libc/queue/sq_remafter.c b/nuttx/libc/queue/sq_remafter.c
index 0545a00f9..a3527b790 100644
--- a/nuttx/libc/queue/sq_remafter.c
+++ b/nuttx/libc/queue/sq_remafter.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/sq_remafter.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,30 +31,26 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name:
*
* Description:
- * sq_remafter removes the entry following 'node; from the
- * 'queue' Returns a reference to the removed entry.
+ * sq_remafter removes the entry following 'node; from the'queue' Returns
+ * a reference to the removed entry.
*
- ************************************************************/
+ ****************************************************************************/
FAR sq_entry_t *sq_remafter(FAR sq_entry_t *node, sq_queue_t *queue)
{
diff --git a/nuttx/libc/queue/sq_remfirst.c b/nuttx/libc/queue/sq_remfirst.c
index f81c18dc2..f261a5485 100644
--- a/nuttx/libc/queue/sq_remfirst.c
+++ b/nuttx/libc/queue/sq_remfirst.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/sq_remfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,30 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: sq_remfirst
*
* Description:
- * sq_remfirst function removes the first entry from
- * 'queue'
+ * sq_remfirst function removes the first entry from 'queue'
*
- ************************************************************/
+ ****************************************************************************/
FAR sq_entry_t *sq_remfirst(sq_queue_t *queue)
{
diff --git a/nuttx/libc/queue/sq_remlast.c b/nuttx/libc/queue/sq_remlast.c
index 8f045e493..7c9aa7d16 100644
--- a/nuttx/libc/queue/sq_remlast.c
+++ b/nuttx/libc/queue/sq_remlast.c
@@ -1,4 +1,4 @@
-/************************************************************
+/****************************************************************************
* libc/queue/sq_remlast.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
@@ -31,29 +31,25 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
- * Compilation Switches
- ************************************************************/
-
-/************************************************************
+/****************************************************************************
* Included Files
- ************************************************************/
+ ****************************************************************************/
#include <queue.h>
-/************************************************************
+/****************************************************************************
* Public Functions
- ************************************************************/
+ ****************************************************************************/
-/************************************************************
+/****************************************************************************
* Name: sq_remlast
*
* Description:
* Removes the last entry in a singly-linked queue.
*
- ************************************************************/
+ ****************************************************************************/
FAR sq_entry_t *sq_remlast(sq_queue_t *queue)
{