示例#1
0
void liext_thread_inst_free (
	LIExtThread* self)
{
	liext_thread_inst_set_quit (self);
	if (self->thread != NULL)
		lisys_thread_free (self->thread);
	if (self->program != NULL)
		limai_program_free (self->program);
	lisys_free (self->file);
	lisys_free (self->code);
	lisys_free (self);
}
示例#2
0
static void Thread_set_quit (LIScrArgs* args)
{
	liext_thread_inst_set_quit (args->self);
}