- Added the "set cpu-policy" command. It`s still not useful until we initialize the pyloader plugin...

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@789 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
elvez 2006-07-21 13:10:31 +00:00
parent ddb0d99aca
commit 0dd711657f
4 changed files with 50 additions and 7 deletions

View file

@ -37,7 +37,7 @@ ConcreteSimulation::ConcreteSimulation() :
{}
void
ConcreteSimulation::set_timer(const int& t)
ConcreteSimulation::set_timer(unsigned int t)
{
_timer_interval = t;
}

View file

@ -39,7 +39,7 @@ namespace sgpem
void stop();
void set_timer(const int&);
void set_timer(const unsigned int);
int get_timer() const;

View file

@ -102,7 +102,7 @@ namespace sgpem
interpreted when the simulation advancement mode is continue.
The input value is in milliseconds, and it must be in range [0, 10000].
*/
virtual void set_timer(const int&) = 0;
virtual void set_timer(unsigned int) = 0;
/**
\see set_timer()