summaryrefslogtreecommitdiff
path: root/includes/Task.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-11-17 11:17:57 -0800
committerPixel <pixel@nobis-crew.org>2011-11-17 11:17:57 -0800
commit2cb2961c9f6062e867b6ccc3d9067f55c7b81ea4 (patch)
tree7846e0849a6f2cde216596a1ab144a69c50f5a60 /includes/Task.h
parente435e4bb3c0744acf5b36c6e441d309d10af1257 (diff)
Cleaning some code, redesigning a bit the stack allocation problem from the task manager, and actually implementing it properly.
Diffstat (limited to 'includes/Task.h')
-rw-r--r--includes/Task.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/Task.h b/includes/Task.h
index 5865831..2e52747 100644
--- a/includes/Task.h
+++ b/includes/Task.h
@@ -5,7 +5,7 @@
#include <coro.h>
#endif
#include <ev++.h>
-#include <vector>
+#include <list>
#include <Exceptions.h>
#include <Printer.h>
@@ -136,7 +136,7 @@ class Task {
TaskMan * getMyTaskMan() { return m_taskMan; }
private:
static size_t stackSize() { return 64 * 1024; }
- void setup(TaskMan * taskMan);
+ void setup(TaskMan * taskMan, void * stack);
static bool needsStacks();
void switchTo();
static void CALLBACK coroutineTrampoline(void *);
@@ -152,7 +152,7 @@ class Task {
void * m_tls;
friend class TaskMan;
friend class Events::TaskEvent;
- typedef std::vector<Events::TaskEvent *> waitedByList_t;
+ typedef std::list<Events::TaskEvent *> waitedByList_t;
waitedByList_t m_waitedBy;
bool m_okayToEAgain;
};