module update
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@947 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
7fd452b8a6
commit
1c590cf5d9
|
@ -370,20 +370,6 @@ enum rt_module_class_type
|
||||||
RT_Module_Class_Unknown /* unknown module */
|
RT_Module_Class_Unknown /* unknown module */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rt_module_info
|
|
||||||
{
|
|
||||||
/* export interface */
|
|
||||||
void *module_interface;
|
|
||||||
/* refence count */
|
|
||||||
rt_uint32_t module_refs;
|
|
||||||
/* module type */
|
|
||||||
enum rt_module_class_type module_type;
|
|
||||||
/* module guid */
|
|
||||||
rt_uint32_t module_guid;
|
|
||||||
/* application entry */
|
|
||||||
void* exec_entry;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct rt_module
|
struct rt_module
|
||||||
{
|
{
|
||||||
/* inherit from object */
|
/* inherit from object */
|
||||||
|
@ -400,8 +386,6 @@ struct rt_module
|
||||||
rt_uint32_t mempool_size;
|
rt_uint32_t mempool_size;
|
||||||
void* module_mempool;
|
void* module_mempool;
|
||||||
|
|
||||||
struct rt_module_info *module_info;
|
|
||||||
|
|
||||||
/* object in this module, module object is the last basic object type */
|
/* object in this module, module object is the last basic object type */
|
||||||
struct rt_object_information module_object[RT_Object_Class_Module];
|
struct rt_object_information module_object[RT_Object_Class_Module];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue