summaryrefslogtreecommitdiff
path: root/nuttx/libc/queue
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-10 16:34:46 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-10 16:34:46 +0000
commit52e613351a71a9aa8cf9dcda553e0811968497e8 (patch)
tree57bc8ad99b79a25acae788f26a6f2b8a4d3789fc /nuttx/libc/queue
parent0f11ac27b9b9dbdde216a700434b7fcdc47e1093 (diff)
downloadpx4-nuttx-52e613351a71a9aa8cf9dcda553e0811968497e8.tar.gz
px4-nuttx-52e613351a71a9aa8cf9dcda553e0811968497e8.tar.bz2
px4-nuttx-52e613351a71a9aa8cf9dcda553e0811968497e8.zip
OK.. I think the directory has been recovered and renamed
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5331 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/libc/queue')
-rw-r--r--nuttx/libc/queue/Make.defs2
-rw-r--r--nuttx/libc/queue/dq_addafter.c2
-rw-r--r--nuttx/libc/queue/dq_addbefore.c2
-rw-r--r--nuttx/libc/queue/dq_addfirst.c2
-rw-r--r--nuttx/libc/queue/dq_addlast.c2
-rw-r--r--nuttx/libc/queue/dq_rem.c2
-rw-r--r--nuttx/libc/queue/dq_remfirst.c2
-rw-r--r--nuttx/libc/queue/dq_remlast.c2
-rw-r--r--nuttx/libc/queue/sq_addafter.c2
-rw-r--r--nuttx/libc/queue/sq_addfirst.c2
-rw-r--r--nuttx/libc/queue/sq_addlast.c2
-rw-r--r--nuttx/libc/queue/sq_rem.c2
-rw-r--r--nuttx/libc/queue/sq_remafter.c2
-rw-r--r--nuttx/libc/queue/sq_remfirst.c2
-rw-r--r--nuttx/libc/queue/sq_remlast.c2
15 files changed, 15 insertions, 15 deletions
diff --git a/nuttx/libc/queue/Make.defs b/nuttx/libc/queue/Make.defs
index 976e7a2b8..9a843dbdc 100644
--- a/nuttx/libc/queue/Make.defs
+++ b/nuttx/libc/queue/Make.defs
@@ -1,5 +1,5 @@
############################################################################
-# lib/queue/Make.defs
+# libc/queue/Make.defs
#
# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/dq_addafter.c b/nuttx/libc/queue/dq_addafter.c
index bfbe0052d..e4d1abf63 100644
--- a/nuttx/libc/queue/dq_addafter.c
+++ b/nuttx/libc/queue/dq_addafter.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/dq_addafter.c
+ * libc/queue/dq_addafter.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/dq_addbefore.c b/nuttx/libc/queue/dq_addbefore.c
index d740ea830..3c403fc94 100644
--- a/nuttx/libc/queue/dq_addbefore.c
+++ b/nuttx/libc/queue/dq_addbefore.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * lib/queue/dq_addbefore.c
+ * libc/queue/dq_addbefore.c
*
* Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/dq_addfirst.c b/nuttx/libc/queue/dq_addfirst.c
index 7c7312de3..56767b928 100644
--- a/nuttx/libc/queue/dq_addfirst.c
+++ b/nuttx/libc/queue/dq_addfirst.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/dq_addfirst.c
+ * libc/queue/dq_addfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/dq_addlast.c b/nuttx/libc/queue/dq_addlast.c
index 745deb27d..3ef08abd0 100644
--- a/nuttx/libc/queue/dq_addlast.c
+++ b/nuttx/libc/queue/dq_addlast.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/dq_addlast.c
+ * libc/queue/dq_addlast.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/dq_rem.c b/nuttx/libc/queue/dq_rem.c
index 218427bf8..db20762c7 100644
--- a/nuttx/libc/queue/dq_rem.c
+++ b/nuttx/libc/queue/dq_rem.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/dq_rem.c
+ * libc/queue/dq_rem.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/dq_remfirst.c b/nuttx/libc/queue/dq_remfirst.c
index 26c5fd7a6..e87acc338 100644
--- a/nuttx/libc/queue/dq_remfirst.c
+++ b/nuttx/libc/queue/dq_remfirst.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/dq_remfirst.c
+ * libc/queue/dq_remfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/dq_remlast.c b/nuttx/libc/queue/dq_remlast.c
index 35adc73e2..18c182335 100644
--- a/nuttx/libc/queue/dq_remlast.c
+++ b/nuttx/libc/queue/dq_remlast.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * lib/queue/dq_remlast.c
+ * libc/queue/dq_remlast.c
*
* Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/sq_addafter.c b/nuttx/libc/queue/sq_addafter.c
index 965ac2844..5d47feba0 100644
--- a/nuttx/libc/queue/sq_addafter.c
+++ b/nuttx/libc/queue/sq_addafter.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/sq_addafter.c
+ * libc/queue/sq_addafter.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/sq_addfirst.c b/nuttx/libc/queue/sq_addfirst.c
index 8fc8e0619..962486154 100644
--- a/nuttx/libc/queue/sq_addfirst.c
+++ b/nuttx/libc/queue/sq_addfirst.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/sq_addfirst.c
+ * libc/queue/sq_addfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/sq_addlast.c b/nuttx/libc/queue/sq_addlast.c
index f9f9625cc..faa07efb5 100644
--- a/nuttx/libc/queue/sq_addlast.c
+++ b/nuttx/libc/queue/sq_addlast.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/sq_addlast.c
+ * libc/queue/sq_addlast.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/sq_rem.c b/nuttx/libc/queue/sq_rem.c
index 6ba52354d..720be182c 100644
--- a/nuttx/libc/queue/sq_rem.c
+++ b/nuttx/libc/queue/sq_rem.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/sq_rem.c
+ * libc/queue/sq_rem.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/sq_remafter.c b/nuttx/libc/queue/sq_remafter.c
index 4dcfb06e4..0545a00f9 100644
--- a/nuttx/libc/queue/sq_remafter.c
+++ b/nuttx/libc/queue/sq_remafter.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/sq_remafter.c
+ * libc/queue/sq_remafter.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/sq_remfirst.c b/nuttx/libc/queue/sq_remfirst.c
index 43df6de41..f81c18dc2 100644
--- a/nuttx/libc/queue/sq_remfirst.c
+++ b/nuttx/libc/queue/sq_remfirst.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/sq_remfirst.c
+ * libc/queue/sq_remfirst.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/libc/queue/sq_remlast.c b/nuttx/libc/queue/sq_remlast.c
index 92cdbde98..8f045e493 100644
--- a/nuttx/libc/queue/sq_remlast.c
+++ b/nuttx/libc/queue/sq_remlast.c
@@ -1,5 +1,5 @@
/************************************************************
- * lib/queue/sq_remlast.c
+ * libc/queue/sq_remlast.c
*
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>