Mercurial > hg > Members > kono > Cerium
diff example/share_task/ppe/Load.h @ 109:5c194c71eca8
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | |
children | 44c0bce54dcf |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/share_task/ppe/Load.h Wed Nov 12 17:39:33 2008 +0900 @@ -0,0 +1,15 @@ +#ifndef INCLUDED_TASK_LOAD +#define INCLUDED_TASK_LOAD + +#ifndef INCLUDED_SCHED_TASK +# include "SchedTask.h" +#endif + +class Load : public SchedTask { +public: + SchedConstructor(Load); + + int run(void *r, void *w); +}; + +#endif