X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fmware%2Fpool.h;h=db4e1443f09a6504d078bd8624568de46cab48a5;hb=78eea60c48fd902dd469654a69b1dcf5abb93f0c;hp=a6834e6ce941195ab3afb82cfafe2e62d5cec883;hpb=791e167e053bdd9250d34a9a5ccae6ccde4d6679;p=bertos.git diff --git a/bertos/mware/pool.h b/bertos/mware/pool.h index a6834e6c..db4e1443 100644 --- a/bertos/mware/pool.h +++ b/bertos/mware/pool.h @@ -1,90 +1,2 @@ -/** - * \file - * - * - * \brief Pool macros. - * - * \version $Id$ - * \author Giovanni Bajo - */ - -/*#* - *#* $Log$ - *#* Revision 1.6 2006/07/19 12:56:28 bernie - *#* Convert to new Doxygen style. - *#* - *#* Revision 1.5 2005/11/04 16:20:02 bernie - *#* Fix reference to README.devlib in header. - *#* - *#* Revision 1.4 2005/04/11 19:10:28 bernie - *#* Include top-level headers from cfg/ subdir. - *#* - *#* Revision 1.3 2004/12/08 08:09:01 bernie - *#* Add missing header. - *#* - *#*/ -#ifndef MWARE_POOL_H -#define MWARE_POOL_H - -#include -#include - -#define EXTERN_POOL(name) \ - extern List name - -#define DECLARE_POOL_WITH_STORAGE(name, type, num, storage) \ - static type name##_items[num]; \ - storage name; \ - INLINE void name##_init(void (*init_func)(type*)) \ - { \ - int i; \ - LIST_INIT(&name); \ - for (i=0;i