MWARE_XXX_H -> STRUCT_XXX_H
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 31 Aug 2008 21:45:01 +0000 (21:45 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 31 Aug 2008 21:45:01 +0000 (21:45 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1770 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/struct/fifobuf.h
bertos/struct/hashtable.h
bertos/struct/heap.h
bertos/struct/list.h
bertos/struct/pool.h

index efb8f10315e2476783d39ec0efbf413160c745b0..2895f390f2451bf1d1bae1a052d8d03a2736a77e 100644 (file)
@@ -64,8 +64,8 @@
  * \author Bernie Innocenti <bernie@codewiz.org>
  */
 
-#ifndef MWARE_FIFO_H
-#define MWARE_FIFO_H
+#ifndef STRUCT_FIFO_H
+#define STRUCT_FIFO_H
 
 #include <cpu/types.h>
 #include <cpu/irq.h>
@@ -355,5 +355,4 @@ void fifo_pushblock(FIFOBuffer *fb, unsigned char *block, size_t len)
 }
 #endif
 
-#endif /* MWARE_FIFO_H */
-
+#endif /* STRUCT_FIFO_H */
index e59548cd73134c044fbc4f24f0acb0d64d301146..363241e3d14f7de589e51a99bb5bb879c23a59da 100644 (file)
@@ -52,8 +52,8 @@
  * \author Giovanni Bajo <rasky@develer.com>
  */
 
-#ifndef MWARE_HASHTABLE_H
-#define MWARE_HASHTABLE_H
+#ifndef STRUCT_HASHTABLE_H
+#define STRUCT_HASHTABLE_H
 
 #include <cfg/compiler.h>
 #include <cfg/macros.h>
@@ -268,4 +268,4 @@ INLINE HashIterator ht_iter_next(HashIterator h)
        return h;
 }
 
-#endif /* MWARE_HASHTABLE_H */
+#endif /* STRUCT_HASHTABLE_H */
index 6819d6793a2ac4dffb481aaef5f00203cfe0d49b..c19c2ec76653cf118683bda9bbb2a08e4b73a356 100644 (file)
@@ -40,8 +40,8 @@
  * \author Bernie Innocenti <bernie@codewiz.org>
  */
 
-#ifndef MWARE_HEAP_H
-#define MWARE_HEAP_H
+#ifndef STRUCT_HEAP_H
+#define STRUCT_HEAP_H
 
 #include "cfg/cfg_heap.h"
 #include <cfg/compiler.h>
@@ -86,4 +86,4 @@ void heap_free(struct Heap* heap, void * mem);
 
 #endif
 
-#endif /* MWARE_HEAP_H */
+#endif /* STRUCT_HEAP_H */
index 87808edf86ac9937a4ff76ab98e87105966d60e3..e0bb2338dab1d7a0d4d5beacbc7cda628afc25fc 100644 (file)
@@ -36,8 +36,8 @@
  * \author Bernie Innocenti <bernie@codewiz.org>
  */
 
-#ifndef MWARE_LIST_H
-#define MWARE_LIST_H
+#ifndef STRUCT_LIST_H
+#define STRUCT_LIST_H
 
 #include <cfg/compiler.h> /* INLINE */
 #include <cfg/debug.h> /* ASSERT_VALID_PTR() */
@@ -327,4 +327,4 @@ INLINE Node *list_remTail(List *l)
        return n;
 }
 
-#endif /* MWARE_LIST_H */
+#endif /* STRUCT_LIST_H */
index 01c18d38a15a28bcdb8706d60e1d1d0c9acbe131..b2e14148ab2cea61f95d59c26afeced5b47b8677 100644 (file)
@@ -35,8 +35,8 @@
  * \author Giovanni Bajo <rasky@develer.com>
  */
 
-#ifndef MWARE_POOL_H
-#define MWARE_POOL_H
+#ifndef STRUCT_POOL_H
+#define STRUCT_POOL_H
 
 #include <cfg/macros.h>
 #include <struct/list.h>
@@ -71,4 +71,4 @@
 #define pool_free(name, elem)          ADDHEAD(name, (Node*)elem)
 #define pool_empty(name)               ISLISTEMPTY(name)
 
-#endif /* MWARE_POOL_H */
+#endif /* STRUCT_POOL_H */