view example/post_function/ppe/task_init.cc @ 1199:e55b9d2cb33e draft

add regex
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Jul 2011 18:16:23 +0900 (2011-07-14)
parents 768452fab95e
children
line wrap: on
line source
#include "Func.h"
#include "Scheduler.h"

/* 必ずこの位置に書いて */
SchedExternTask(Hello);

/**
 * この関数は ../spe/spe-main と違って
 * 自分で呼び出せばいい関数なので
 * 好きな関数名でおk (SchedRegisterTask は必須)
 */

void
task_init(void)
{
  SchedRegisterTask(HELLO_TASK, Hello);
}