[project @ 1996-07-19 18:36:04 by partain]
[ghc-hetmet.git] / ghc / lib / concurrent / Parallel.hs
1 {-
2 %
3 % (c) The GRASP/AQUA Project, Glasgow University, 1995-1996
4 %
5 \section[Parallel]{Parallel Constructs}
6 -}
7
8 module Parallel (par, seq -- re-exported
9 #if defined(__GRANSIM__)
10         , parGlobal, parLocal, parAt, parAtForNow     
11 #endif
12     ) where
13
14 import GHCbase ( par, seq )
15
16 #if defined(__GRANSIM__)
17
18 {-# INLINE parGlobal #-}
19 parGlobal   :: Int -> Int -> Int -> Int -> a -> b -> b
20 parLocal    :: Int -> Int -> Int -> Int -> a -> b -> b
21 parAt       :: Int -> Int -> Int -> Int -> a -> b -> c -> c
22 parAtForNow :: Int -> Int -> Int -> Int -> a -> b -> c -> c
23
24 parGlobal (I# w) (I# g) (I# s) (I# p) x y = case (parGlobal# x w g s p y) of { 0# -> parError; _ -> y }
25 parLocal  (I# w) (I# g) (I# s) (I# p) x y = case (parLocal#  x w g s p y) of { 0# -> parError; _ -> y }
26
27 parAt       (I# w) (I# g) (I# s) (I# p) v x y = case (parAt#       x v w g s p y) of { 0# -> parError; _ -> y }
28 parAtForNow (I# w) (I# g) (I# s) (I# p) v x y = case (parAtForNow# x v w g s p y) of { 0# -> parError; _ -> y }
29
30 #endif
31
32 -- Maybe parIO and the like could be added here later.