Example #1
0
static void decode_core(int core)
{
	int thread;
	FOREACH_THREAD
		decode_thread(core, thread);
}
Example #2
0
void *decodeThread(void *data)
{
	decode_thread(data);
	return NULL;
}