diff options
author | pixel <pixel> | 2007-12-25 13:36:05 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-12-25 13:36:05 +0000 |
commit | c677806f6f9fc4658a56c5b2807701cbf7223a41 (patch) | |
tree | c9eba73385100fb98b4b63934c79b029900799fb /lib | |
parent | b3cc6420d7d6a8e7ac3c0d860f2330bf0e6dafd3 (diff) |
Adding more stats pulling.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/TaskMan.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/TaskMan.cc b/lib/TaskMan.cc index df37a04..efd48f0 100644 --- a/lib/TaskMan.cc +++ b/lib/TaskMan.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: TaskMan.cc,v 1.50 2007-12-25 12:21:19 pixel Exp $ */ +/* $Id: TaskMan.cc,v 1.51 2007-12-25 13:36:06 pixel Exp $ */ #ifndef _WIN32 #include <signal.h> @@ -392,6 +392,14 @@ std::vector<Task *>::iterator TaskMan::end() { return TaskList.end(); } +int TaskMan::nb_tasks() { + return TaskList.size(); +} + +int TaskMan::nb_zombies() { + return Zombies.size(); +} + // Should only be called by the destructor of a task. void TaskMan::RemoveFromWatches(Task * t) { if (!w4ha.empty()) { |