add module feature

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@604 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
qiuyiuestc
2010-04-11 16:44:54 +00:00
parent ca6a1a7ecb
commit 5211e7ff8f
7 changed files with 663 additions and 16 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef __RTM_H__
#define __RTM_H__
#include <rtdef.h>
#ifdef RT_USING_MODULE
#define RTM_EXPORT(symbol) \
const char __rtmsym_##symbol##_name[] = #symbol; \
const struct rt_module_symtab __rtmsym_##symbol SECTION("RTMSymTab")= \
{ \
(rt_uint32_t)&symbol, \
__rtmsym_##symbol##_name, \
};
#else
#define RTM_EXPORT(symbol)
#endif
struct rt_module_symtab
{
rt_uint32_t addr;
const char* name;
};
#endif