view example/hello_array/ppe/Hello.cc @ 744:516948647495

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 12 Jan 2010 10:29:20 +0900
parents 71a58131b2c0
children
line wrap: on
line source

#include <stdio.h>
#include "SchedTaskArray.h"
#include "Hello.h"
#include "Func.h"

/* これは必須 */
SchedDefineTask(Hello);

static int
run(SchedTask *s,void *rbuf, void *wbuf)
{
    // SchedTaskArray *a = (SchedTaskArray *)s;

    s->printf("Hello World\n");

    return 0;
}