view example/mainMem/ppe/Hello.h @ 460:433892ba596b draft

fix Scheduler.h
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 29 Sep 2009 11:51:25 +0900
parents 1db2b3dc6a5a
children 839e34d0cc3c
line wrap: on
line source

#ifndef INCLUDED_TASK_HELLO
#define INCLUDED_TASK_HELLO

#ifndef INCLUDED_SCHED_TASK
#  include "SchedTask.h"
#endif

class Hello : public SchedTask {
public:
    SchedConstructor(Hello);
    
    int run(void *r, void *w);
};

#endif