1 /* $Id: scheduler.h,v 1.5 2005/07/10 04:49:15 oohara Exp $ */
2 
3 #ifndef __DANGEN_SCHEDULER_H__
4 #define __DANGEN_SCHEDULER_H__
5 
6 /* scheduler return value */
7 #define SCHEDULER_SUCCESS 0
8 #define SCHEDULER_ERROR 1
9 #define SCHEDULER_NEXT_STAGE 2
10 
11 int scheduler(int tutorial, int t);
12 void set_this_stage_cleared(int n);
13 
14 #endif /* not __DANGEN_SCHEDULER_H__ */
15