view example/hello_array/ppe/Hello.cc @ 990:30f2e77ecb36

merge
author root@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 01 Oct 2010 04:43:02 +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;
}