view example/many_task/spe/spe-main.cc @ 0:04e28d8d3c6f

first commit
author Daiki KINJYO <e085722@ie.u-ryukyu.ac.jp>
date Mon, 08 Nov 2010 01:23:25 +0900
parents
children
line wrap: on
line source

#include "Func.h"
#include "Scheduler.h"

SchedExternTask(QuickSort);

/**
 * この関数は SpeScheduler から呼ばれるので
 * 必ずこの関数名でお願いします。
 */

static void 
spe_debug() 
{
}

void
task_init(Scheduler *s)
{
    spe_debug();
    SchedRegisterTask(QUICK_SORT, QuickSort);
}