Fix typo 'destory' and compile issue (#119)

* Optimize samples build process

* Samples: build 64 bit version by default

* Fix typo 'destory'

* Fix compile issue
This commit is contained in:
Weining
2019-09-10 15:52:03 +08:00
committed by wenyongh
parent 26149021ff
commit a770706cb6
15 changed files with 20 additions and 122 deletions

View File

@ -184,7 +184,7 @@ bool app_manager_is_interrupting_module(uint32 module_type)
return app_manager_get_module_data(module_type)->wd_timer.is_interrupting;
}
extern void destory_module_timer_ctx(unsigned int module_id);
extern void destroy_module_timer_ctx(unsigned int module_id);
void release_module(module_data *m_data)
{
@ -199,7 +199,7 @@ void release_module(module_data *m_data)
m_data->timer_ctx = NULL;
destory_module_timer_ctx(m_data->id);
destroy_module_timer_ctx(m_data->id);
bh_free(m_data);
}