aboutsummaryrefslogtreecommitdiffhomepage
path: root/System
diff options
context:
space:
mode:
authorGravatar simonmar <unknown>2003-05-21 15:07:55 +0000
committerGravatar simonmar <unknown>2003-05-21 15:07:55 +0000
commit93b03e88b9cc98b1a02613ab3cb03954ce3bf391 (patch)
tree5dedc690ece201f2abc0790d1cc3b3a7dd1731db /System
parentded4b5f48b9a384ad30a71e320c25d130aa80465 (diff)
[project @ 2003-05-21 15:07:55 by simonmar]
Revert previous commit, I've fixed Haddock instead.
Diffstat (limited to 'System')
-rw-r--r--System/Posix/Process.hsc18
1 files changed, 10 insertions, 8 deletions
diff --git a/System/Posix/Process.hsc b/System/Posix/Process.hsc
index 7fd6420..f855500 100644
--- a/System/Posix/Process.hsc
+++ b/System/Posix/Process.hsc
@@ -14,32 +14,34 @@
-----------------------------------------------------------------------------
module System.Posix.Process (
- -- * Forking and executing
+ -- * Processes
+
+ -- ** Forking and executing
forkProcess, forkProcessAll,
executeFile,
- -- * Exiting
+ -- ** Exiting
exitImmediately,
- -- * Process environment
+ -- ** Process environment
getProcessID,
getParentProcessID,
getProcessGroupID,
- -- * Process groups
+ -- ** Process groups
createProcessGroup,
joinProcessGroup,
setProcessGroupID,
- -- * Sessions
+ -- ** Sessions
createSession,
- -- * Process times
+ -- ** Process times
ProcessTimes(elapsedTime, systemTime, userTime,
childSystemTime, childUserTime),
getProcessTimes,
- -- * Scheduling priority
+ -- ** Scheduling priority
nice,
getProcessPriority,
getProcessGroupPriority,
@@ -48,7 +50,7 @@ module System.Posix.Process (
setProcessGroupPriority,
setUserPriority,
- -- * Process status
+ -- ** Process status
ProcessStatus(..),
getProcessStatus,
getAnyProcessStatus,