view TaskManager/kernel/sys_task/Start.h @ 364:87462f8d3761

uint32 to memaddr(uint64)
author tkaito@localhost.localdomain
date Fri, 24 Jul 2009 17:40:53 +0900
parents 5c194c71eca8
children bc5b3d327083
line wrap: on
line source

#ifndef INCLUDED_SYSTASK_START
#define INCLUDED_SYSTASK_START

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

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

#endif