|
From: Hans D. <dul...@us...> - 2001-03-20 04:03:43
|
Update of /cvsroot/corelinux/corelinux/corelinux
In directory usw-pr-cvs1:/tmp/cvs-serv4704
Modified Files:
Environment.hpp
Log Message:
Added priority handling functions.
Index: Environment.hpp
===================================================================
RCS file: /cvsroot/corelinux/corelinux/corelinux/Environment.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Environment.hpp 2000/09/24 02:33:54 1.3
--- Environment.hpp 2001/03/20 04:06:00 1.4
***************
*** 65,76 ****
static GroupIdentifier getEffectiveGroupId( void );
- /// Retrieve the process group id for the current process
-
- static ProcessIdentifier getProcessGroupId( void );
-
- /// Retrieve the process group id for a specific process
-
- static ProcessIdentifier getProcessGroupId( ProcessIdentifierRef );
-
/**
Retrieve the environmental value variable from
--- 65,68 ----
***************
*** 116,119 ****
--- 108,127 ----
static Int removeCommonAccess( CharCptr );
+
+ /// Retrieve the process group id for the current process
+
+ static ProcessIdentifier getProcessGroupId( void );
+
+ /// Retrieve the process group id for a specific process
+
+ static ProcessIdentifier getProcessGroupId( ProcessIdentifierRef );
+
+ /// set priority for a specific process
+
+ static void setThreadPriority( ProcessIdentifier, Int );
+
+ /// get priority for a specific process
+
+ static Int getThreadPriority( ProcessIdentifier );
protected:
|