aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Process.hsc
diff options
context:
space:
mode:
authorGravatar simonmar <unknown>2003-05-21 14:58:36 +0000
committerGravatar simonmar <unknown>2003-05-21 14:58:36 +0000
commitded4b5f48b9a384ad30a71e320c25d130aa80465 (patch)
treedbee3d5a64d7e83a2470837fea6f0f82f20bd87a /System/Posix/Process.hsc
parent7605370f4a543feda65bc04846aa246cd1b5c340 (diff)
[project @ 2003-05-21 14:58:36 by simonmar]
Flatten the doc structure a bit.
Diffstat (limited to 'System/Posix/Process.hsc')
-rw-r--r--System/Posix/Process.hsc18
1 files changed, 8 insertions, 10 deletions
diff --git a/System/Posix/Process.hsc b/System/Posix/Process.hsc
index f855500..7fd6420 100644
--- a/System/Posix/Process.hsc
+++ b/System/Posix/Process.hsc
@@ -14,34 +14,32 @@
-----------------------------------------------------------------------------
module System.Posix.Process (
- -- * Processes
-
- -- ** Forking and executing
+ -- * 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,
@@ -50,7 +48,7 @@ module System.Posix.Process (
setProcessGroupPriority,
setUserPriority,
- -- ** Process status
+ -- * Process status
ProcessStatus(..),
getProcessStatus,
getAnyProcessStatus,