- Start implementing Scheduler::step_forward(). Whoohooo!

- Changed Schedulable::get_remaining_time() in get_elapsed_time()


git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@702 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-07-03 21:55:09 +00:00
parent 94f7c1d127
commit 9856a86c87
9 changed files with 102 additions and 13 deletions

View file

@ -67,8 +67,8 @@ namespace sgpem
virtual ~History() = 0;
virtual size_t get_size() = 0;
virtual const Environment& get_last_environment(position index) const = 0;
virtual const Environment& get_environment_at() const throw(std::out_of_range) = 0;
virtual const Environment& get_last_environment() const = 0;
virtual const Environment& get_environment_at(position index) const throw(std::out_of_range) = 0;
virtual void remove(resource_key_t resource_key) = 0;
virtual void remove(Process& process) = 0;