|
From: Hans D. <dul...@us...> - 2001-03-17 04:28:08
|
Update of /cvsroot/corelinux/corelinux/corelinux
In directory usw-pr-cvs1:/tmp/cvs-serv8805
Modified Files:
Thread.hpp
Log Message:
Added CreatedCount and BlockedCount.
Index: Thread.hpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/corelinux/Thread.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Thread.hpp 2000/08/31 22:52:20 1.3
--- Thread.hpp 2001/03/17 04:30:16 1.4
***************
*** 140,143 ****
--- 140,150 ----
/**
+ Retrieve the number of created threads
+ @return Count number of active threads
+ */
+
+ static Count getCreatedThreadCount( void );
+
+ /**
Retrieve the number of threads that are starting or running
@return Count number of active threads
***************
*** 147,150 ****
--- 154,164 ----
/**
+ Retrieve the number of threads that are waiting ro tun
+ @return Count number of active threads
+ */
+
+ static Count getBlockedThreadCount( void );
+
+ /**
Retrieve the number of threads that are not starting or
running or waiting to run.
***************
*** 253,256 ****
--- 267,271 ----
static ThreadIdentifier theThreadManagerId;
+ static Count theThreadCount;
};
|