comparison example/renew_task/ppe/RenewStart.h @ 192:6694da357750 draft

add example/renew_task
author gongo@localhost.localdomain
date Tue, 13 Jan 2009 10:41:05 +0900
parents
children 839e34d0cc3c
comparison
equal deleted inserted replaced
191:4f85911aa183 192:6694da357750
1 #ifndef INCLUDED_TASK_RENEWSTART
2 #define INCLUDED_TASK_RENEWSTART
3
4 #ifndef INCLUDED_SCHED_TASK
5 # include "SchedTask.h"
6 #endif
7
8 class RenewStart : public SchedTask {
9 public:
10 SchedConstructor(RenewStart);
11
12 int run(void *r, void *w);
13 };
14
15 #endif