Added optimizations to the task system

Added optimizations to the forward system
Fixed some debugger errors
This commit is contained in:
David Anderson
2005-10-25 20:38:00 +00:00
parent 0be7540637
commit 10a64737b5
10 changed files with 310 additions and 136 deletions

View File

@@ -34,7 +34,7 @@
class CTaskMngr
{
private:
public:
/*** class CTask ***/
class CTask
{
@@ -52,6 +52,7 @@ private:
int m_iParamLen;
cell *m_pParams;
cell m_ParamSize;
bool m_bFree;
// execution
@@ -70,6 +71,7 @@ private:
void resetNextExecTime(float fCurrentTime);
bool shouldRepeat();
CTask *getTask() { return this; }
CTask();
~CTask();