From 23b7f48a17d33a426782161f721cff4fc6611ddf Mon Sep 17 00:00:00 2001 From: bernie Date: Sun, 31 Aug 2008 21:45:01 +0000 Subject: [PATCH] MWARE_XXX_H -> STRUCT_XXX_H git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1770 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/struct/fifobuf.h | 7 +++---- bertos/struct/hashtable.h | 6 +++--- bertos/struct/heap.h | 6 +++--- bertos/struct/list.h | 6 +++--- bertos/struct/pool.h | 6 +++--- 5 files changed, 15 insertions(+), 16 deletions(-) diff --git a/bertos/struct/fifobuf.h b/bertos/struct/fifobuf.h index efb8f103..2895f390 100644 --- a/bertos/struct/fifobuf.h +++ b/bertos/struct/fifobuf.h @@ -64,8 +64,8 @@ * \author Bernie Innocenti */ -#ifndef MWARE_FIFO_H -#define MWARE_FIFO_H +#ifndef STRUCT_FIFO_H +#define STRUCT_FIFO_H #include #include @@ -355,5 +355,4 @@ void fifo_pushblock(FIFOBuffer *fb, unsigned char *block, size_t len) } #endif -#endif /* MWARE_FIFO_H */ - +#endif /* STRUCT_FIFO_H */ diff --git a/bertos/struct/hashtable.h b/bertos/struct/hashtable.h index e59548cd..363241e3 100644 --- a/bertos/struct/hashtable.h +++ b/bertos/struct/hashtable.h @@ -52,8 +52,8 @@ * \author Giovanni Bajo */ -#ifndef MWARE_HASHTABLE_H -#define MWARE_HASHTABLE_H +#ifndef STRUCT_HASHTABLE_H +#define STRUCT_HASHTABLE_H #include #include @@ -268,4 +268,4 @@ INLINE HashIterator ht_iter_next(HashIterator h) return h; } -#endif /* MWARE_HASHTABLE_H */ +#endif /* STRUCT_HASHTABLE_H */ diff --git a/bertos/struct/heap.h b/bertos/struct/heap.h index 6819d679..c19c2ec7 100644 --- a/bertos/struct/heap.h +++ b/bertos/struct/heap.h @@ -40,8 +40,8 @@ * \author Bernie Innocenti */ -#ifndef MWARE_HEAP_H -#define MWARE_HEAP_H +#ifndef STRUCT_HEAP_H +#define STRUCT_HEAP_H #include "cfg/cfg_heap.h" #include @@ -86,4 +86,4 @@ void heap_free(struct Heap* heap, void * mem); #endif -#endif /* MWARE_HEAP_H */ +#endif /* STRUCT_HEAP_H */ diff --git a/bertos/struct/list.h b/bertos/struct/list.h index 87808edf..e0bb2338 100644 --- a/bertos/struct/list.h +++ b/bertos/struct/list.h @@ -36,8 +36,8 @@ * \author Bernie Innocenti */ -#ifndef MWARE_LIST_H -#define MWARE_LIST_H +#ifndef STRUCT_LIST_H +#define STRUCT_LIST_H #include /* INLINE */ #include /* ASSERT_VALID_PTR() */ @@ -327,4 +327,4 @@ INLINE Node *list_remTail(List *l) return n; } -#endif /* MWARE_LIST_H */ +#endif /* STRUCT_LIST_H */ diff --git a/bertos/struct/pool.h b/bertos/struct/pool.h index 01c18d38..b2e14148 100644 --- a/bertos/struct/pool.h +++ b/bertos/struct/pool.h @@ -35,8 +35,8 @@ * \author Giovanni Bajo */ -#ifndef MWARE_POOL_H -#define MWARE_POOL_H +#ifndef STRUCT_POOL_H +#define STRUCT_POOL_H #include #include @@ -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 */ -- 2.25.1