action: bugfix - initialize member
[model-checker.git] / schedule.h
1 /** @file schedule.h
2  *      @brief Thread scheduler.
3  */
4
5 #ifndef __SCHEDULE_H__
6 #define __SCHEDULE_H__
7
8 #include "mymemory.h"
9 #include "modeltypes.h"
10
11 /* Forward declaration */
12 class Thread;
13 class Node;
14
15 typedef enum enabled_type {
16         THREAD_DISABLED,
17         THREAD_ENABLED,
18         THREAD_SLEEP_SET
19 } enabled_type_t;
20
21 /** @brief The Scheduler class performs the mechanics of Thread execution
22  * scheduling. */
23 class Scheduler {
24 public:
25         Scheduler();
26         void add_thread(Thread *t);
27         void remove_thread(Thread *t);
28         void sleep(Thread *t);
29         void wake(Thread *t);
30         Thread * next_thread(Thread *t);
31         Thread * get_current_thread() const;
32         void print() const;
33         enabled_type_t * get_enabled_array() const { return enabled; };
34         void remove_sleep(Thread *t);
35         void add_sleep(Thread *t);
36         enabled_type_t get_enabled(const Thread *t) const;
37         void update_sleep_set(Node *n);
38         bool is_enabled(const Thread *t) const;
39         bool is_enabled(thread_id_t tid) const;
40         bool is_sleep_set(const Thread *t) const;
41
42         SNAPSHOTALLOC
43 private:
44         /** The list of available Threads that are not currently running */
45         enabled_type_t *enabled;
46         int enabled_len;
47         int curr_thread_index;
48         void set_enabled(Thread *t, enabled_type_t enabled_status);
49
50         /** The currently-running Thread */
51         Thread *current;
52 };
53
54 #endif /* __SCHEDULE_H__ */