view example/word_count3/spe/Hello.cc @ 693:c512e879153a draft

document
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 07 Dec 2009 12:39:34 +0900
parents 217d7c53442b
children
line wrap: on
line source

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

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

static int
run(SchedTask *s, void *rbuf, void *wbuf)
{
    printf("Hello, World!!\n");

    return 0;
}