aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Process.hsc
diff options
context:
space:
mode:
authorGravatar panne <unknown>2003-08-04 13:26:14 +0000
committerGravatar panne <unknown>2003-08-04 13:26:14 +0000
commitbf0e4e9c23727487befe746b629524f4f19dbf8c (patch)
tree9bc0b435344ed287d1e3d754836bc67ccaf2bba9 /System/Posix/Process.hsc
parent839353f2be585186ac82bb6de5c422959418f3c0 (diff)
[project @ 2003-08-04 13:26:12 by panne]
More import tweaking for Haddock
Diffstat (limited to 'System/Posix/Process.hsc')
-rw-r--r--System/Posix/Process.hsc13
1 files changed, 9 insertions, 4 deletions
diff --git a/System/Posix/Process.hsc b/System/Posix/Process.hsc
index 8093c66..6e6e9e0 100644
--- a/System/Posix/Process.hsc
+++ b/System/Posix/Process.hsc
@@ -37,8 +37,7 @@ module System.Posix.Process (
createSession,
-- ** Process times
- ProcessTimes(elapsedTime, systemTime, userTime,
- childSystemTime, childUserTime),
+ ProcessTimes(..),
getProcessTimes,
-- ** Scheduling priority
@@ -61,8 +60,14 @@ module System.Posix.Process (
#include "HsUnix.h"
import GHC.Conc ( forkProcessPrim )
-import Foreign
-import Foreign.C
+import Foreign.C.Error
+import Foreign.C.String ( CString, withCString )
+import Foreign.C.Types ( CInt, CClock )
+import Foreign.Marshal.Alloc ( alloca, allocaBytes )
+import Foreign.Marshal.Array ( withArray0 )
+import Foreign.Marshal.Utils ( withMany )
+import Foreign.Ptr ( Ptr, nullPtr )
+import Foreign.Storable ( Storable(..) )
import System.IO
import System.IO.Error
import System.Exit