GHC.Conc.Sync (original) (raw)
Documentation
A [ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync") is an abstract type representing a handle to a thread.[ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync") is an instance of [Eq](Data-Eq.html#t:Eq "Data.Eq"), [Ord](Data-Ord.html#t:Ord "Data.Ord") and [Show](Text-Show.html#t:Show "Text.Show"), where the [Ord](Data-Ord.html#t:Ord "Data.Ord") instance implements an arbitrary total ordering over[ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync")s. The [Show](Text-Show.html#t:Show "Text.Show") instance lets you convert an arbitrary-valued[ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync") to string form; showing a [ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync") value is occasionally useful when debugging or diagnosing the behaviour of a concurrent program.
Note: in GHC, if you have a [ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync"), you essentially have a pointer to the thread itself. This means the thread itself can't be garbage collected until you drop the [ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync"). This misfeature will hopefully be corrected at a later date.
forkIO :: IO () -> IO ThreadId Source #
Creates a new thread to run the [IO](System-IO.html#t:IO "System.IO") computation passed as the first argument, and returns the [ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync") of the newly created thread.
The new thread will be a lightweight, unbound thread. Foreign calls made by this thread are not guaranteed to be made by any particular OS thread; if you need foreign calls to be made by a particular OS thread, then use [forkOS](Control-Concurrent.html#v:forkOS "Control.Concurrent") instead.
The new thread inherits the masked state of the parent (see[mask](Control-Exception.html#v:mask "Control.Exception")).
The newly created thread has an exception handler that discards the exceptions [BlockedIndefinitelyOnMVar](Control-Exception.html#t:BlockedIndefinitelyOnMVar "Control.Exception"), [BlockedIndefinitelyOnSTM](Control-Exception.html#t:BlockedIndefinitelyOnSTM "Control.Exception"), and[ThreadKilled](Control-Exception.html#v:ThreadKilled "Control.Exception"), and passes all other exceptions to the uncaught exception handler.
forkIOWithUnmask :: ((forall a. IO a -> IO a) -> IO ()) -> IO ThreadId Source #
Like [forkIO](GHC-Conc-Sync.html#v:forkIO "GHC.Conc.Sync"), but the child thread is passed a function that can be used to unmask asynchronous exceptions. This function is typically used in the following way
... mask_ $ forkIOWithUnmask $ \unmask -> catch (unmask ...) handler
so that the exception handler in the child thread is established with asynchronous exceptions masked, meanwhile the main body of the child thread is executed in the unmasked state.
Note that the unmask function passed to the child thread should only be used in that thread; the behaviour is undefined if it is invoked in a different thread.
Since: base-4.4.0.0
forkOn :: Int -> IO () -> IO ThreadId Source #
Like [forkIO](GHC-Conc-Sync.html#v:forkIO "GHC.Conc.Sync"), but lets you specify on which capability the thread should run. Unlike a [forkIO](GHC-Conc-Sync.html#v:forkIO "GHC.Conc.Sync") thread, a thread created by [forkOn](GHC-Conc-Sync.html#v:forkOn "GHC.Conc.Sync")will stay on the same capability for its entire lifetime ([forkIO](GHC-Conc-Sync.html#v:forkIO "GHC.Conc.Sync")threads can migrate between capabilities according to the scheduling policy). [forkOn](GHC-Conc-Sync.html#v:forkOn "GHC.Conc.Sync") is useful for overriding the scheduling policy when you know in advance how best to distribute the threads.
The [Int](Data-Int.html#t:Int "Data.Int") argument specifies a capability number (see[getNumCapabilities](GHC-Conc-Sync.html#v:getNumCapabilities "GHC.Conc.Sync")). Typically capabilities correspond to physical processors, but the exact behaviour is implementation-dependent. The value passed to [forkOn](GHC-Conc-Sync.html#v:forkOn "GHC.Conc.Sync") is interpreted modulo the total number of capabilities as returned by [getNumCapabilities](GHC-Conc-Sync.html#v:getNumCapabilities "GHC.Conc.Sync").
GHC note: the number of capabilities is specified by the +RTS -Noption when the program is started. Capabilities can be fixed to actual processor cores with +RTS -qa if the underlying operating system supports that, although in practice this is usually unnecessary (and may actually degrade performance in some cases - experimentation is recommended).
Since: base-4.4.0.0
numCapabilities :: Int Source #
the value passed to the +RTS -N flag. This is the number of Haskell threads that can run truly simultaneously at any given time, and is typically set to the number of physical processor cores on the machine.
Strictly speaking it is better to use [getNumCapabilities](GHC-Conc-Sync.html#v:getNumCapabilities "GHC.Conc.Sync"), because the number of capabilities might vary at runtime.
setNumCapabilities :: Int -> IO () Source #
Set the number of Haskell threads that can run truly simultaneously (on separate physical processors) at any given time. The number passed to [forkOn](GHC-Conc-Sync.html#v:forkOn "GHC.Conc.Sync") is interpreted modulo this value. The initial value is given by the +RTS -N runtime flag.
This is also the number of threads that will participate in parallel garbage collection. It is strongly recommended that the number of capabilities is not set larger than the number of physical processor cores, and it may often be beneficial to leave one or more cores free to avoid contention with other processes in the machine.
Since: base-4.5.0.0
throwTo :: Exception e => ThreadId -> e -> IO () Source #
[throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") raises an arbitrary exception in the target thread (GHC only).
Exception delivery synchronizes between the source and target thread:[throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") does not return until the exception has been raised in the target thread. The calling thread can thus be certain that the target thread has received the exception. Exception delivery is also atomic with respect to other exceptions. Atomicity is a useful property to have when dealing with race conditions: e.g. if there are two threads that can kill each other, it is guaranteed that only one of the threads will get to kill the other.
Whatever work the target thread was doing when the exception was raised is not lost: the computation is suspended until required by another thread.
If the target thread is currently making a foreign call, then the exception will not be raised (and hence [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") will not return) until the call has completed. This is the case regardless of whether the call is inside a [mask](Control-Exception.html#v:mask "Control.Exception") or not. However, in GHC a foreign call can be annotated as interruptible, in which case a [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") will cause the RTS to attempt to cause the call to return; see the GHC documentation for more details.
Important note: the behaviour of [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") differs from that described in the paper "Asynchronous exceptions in Haskell" (http://research.microsoft.com/~simonpj/Papers/asynch-exns.htm). In the paper, [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") is non-blocking; but the library implementation adopts a more synchronous design in which [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") does not return until the exception is received by the target thread. The trade-off is discussed in Section 9 of the paper. Like any blocking operation, [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") is therefore interruptible (see Section 5.3 of the paper). Unlike other interruptible operations, however, [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync")is always interruptible, even if it does not actually block.
There is no guarantee that the exception will be delivered promptly, although the runtime will endeavour to ensure that arbitrary delays don't occur. In GHC, an exception can only be raised when a thread reaches a safe point, where a safe point is where memory allocation occurs. Some loops do not perform any memory allocation inside the loop and therefore cannot be interrupted by a [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync").
If the target of [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") is the calling thread, then the behaviour is the same as [throwIO](Control-Exception.html#v:throwIO "Control.Exception"), except that the exception is thrown as an asynchronous exception. This means that if there is an enclosing pure computation, which would be the case if the current IO operation is inside [unsafePerformIO](System-IO-Unsafe.html#v:unsafePerformIO "System.IO.Unsafe") or [unsafeInterleaveIO](System-IO-Unsafe.html#v:unsafeInterleaveIO "System.IO.Unsafe"), that computation is not permanently replaced by the exception, but is suspended as if it had received an asynchronous exception.
Note that if [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") is called with the current thread as the target, the exception will be thrown even if the thread is currently inside [mask](Control-Exception.html#v:mask "Control.Exception") or [uninterruptibleMask](Control-Exception.html#v:uninterruptibleMask "Control.Exception").
The [yield](GHC-Conc-Sync.html#v:yield "GHC.Conc.Sync") action allows (forces, in a co-operative multitasking implementation) a context-switch to any other currently runnable threads (if any), and is occasionally useful when implementing concurrency abstractions.
labelThread :: ThreadId -> String -> IO () Source #
[labelThread](GHC-Conc-Sync.html#v:labelThread "GHC.Conc.Sync") stores a string as identifier for this thread. This identifier will be used in the debugging output to make distinction of different threads easier (otherwise you only have the thread state object's address in the heap). It also emits an event to the RTS eventlog.
Other applications like the graphical Concurrent Haskell Debugger (http://www.informatik.uni-kiel.de/~fhu/chd/) may choose to overload[labelThread](GHC-Conc-Sync.html#v:labelThread "GHC.Conc.Sync") for their purposes as well.
mkWeakThreadId :: ThreadId -> IO (Weak ThreadId) Source #
Make a weak pointer to a [ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync"). It can be important to do this if you want to hold a reference to a [ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync") while still allowing the thread to receive the BlockedIndefinitely family of exceptions (e.g. [BlockedIndefinitelyOnMVar](Control-Exception.html#t:BlockedIndefinitelyOnMVar "Control.Exception")). Holding a normal[ThreadId](GHC-Conc-Sync.html#t:ThreadId "GHC.Conc.Sync") reference will prevent the delivery ofBlockedIndefinitely exceptions because the reference could be used as the target of [throwTo](GHC-Conc-Sync.html#v:throwTo "GHC.Conc.Sync") at any time, which would unblock the thread.
Holding a Weak ThreadId, on the other hand, will not prevent the thread from receiving BlockedIndefinitely exceptions. It is still possible to throw an exception to a Weak ThreadId, but the caller must use deRefWeak first to determine whether the thread still exists.
Since: base-4.6.0.0
threadCapability :: ThreadId -> IO (Int, Bool) Source #
Returns the number of the capability on which the thread is currently running, and a boolean indicating whether the thread is locked to that capability or not. A thread is locked to a capability if it was created with forkOn.
Since: base-4.4.0.0
setAllocationCounter :: Int64 -> IO () Source #
Every thread has an allocation counter that tracks how much memory has been allocated by the thread. The counter is initialized to zero, and [setAllocationCounter](GHC-Conc-Sync.html#v:setAllocationCounter "GHC.Conc.Sync") sets the current value. The allocation counter counts *down*, so in the absence of a call to [setAllocationCounter](GHC-Conc-Sync.html#v:setAllocationCounter "GHC.Conc.Sync") its value is the negation of the number of bytes of memory allocated by the thread.
There are two things that you can do with this counter:
- Use it as a simple profiling mechanism, with
[getAllocationCounter](GHC-Conc-Sync.html#v:getAllocationCounter "GHC.Conc.Sync"). - Use it as a resource limit. See
[enableAllocationLimit](GHC-Conc-Sync.html#v:enableAllocationLimit "GHC.Conc.Sync").
Allocation accounting is accurate only to about 4Kbytes.
Since: base-4.8.0.0
enableAllocationLimit :: IO () Source #
Enables the allocation counter to be treated as a limit for the current thread. When the allocation limit is enabled, if the allocation counter counts down below zero, the thread will be sent the [AllocationLimitExceeded](Control-Exception.html#t:AllocationLimitExceeded "Control.Exception") asynchronous exception. When this happens, the counter is reinitialised (by default to 100K, but tunable with the +RTS -xq option) so that it can handle the exception and perform any necessary clean up. If it exhausts this additional allowance, another [AllocationLimitExceeded](Control-Exception.html#t:AllocationLimitExceeded "Control.Exception") exception is sent, and so forth. Like other asynchronous exceptions, the[AllocationLimitExceeded](Control-Exception.html#t:AllocationLimitExceeded "Control.Exception") exception is deferred while the thread is inside[mask](Control-Exception.html#v:mask "Control.Exception") or an exception handler in [catch](Control-Exception.html#v:catch "Control.Exception").
Note that memory allocation is unrelated to live memory, also known as heap residency. A thread can allocate a large amount of memory and retain anything between none and all of it. It is better to think of the allocation limit as a limit on_CPU time_, rather than a limit on memory.
Compared to using timeouts, allocation limits don't count time spent blocked or in foreign calls.
Since: base-4.8.0.0
A monad supporting atomic memory transactions.
atomically :: STM a -> IO a Source #
Perform a series of STM actions atomically.
Using [atomically](GHC-Conc-Sync.html#v:atomically "GHC.Conc.Sync") inside an [unsafePerformIO](System-IO-Unsafe.html#v:unsafePerformIO "System.IO.Unsafe") or [unsafeInterleaveIO](System-IO-Unsafe.html#v:unsafeInterleaveIO "System.IO.Unsafe") subverts some of guarantees that STM provides. It makes it possible to run a transaction inside of another transaction, depending on when the thunk is evaluated. If a nested transaction is attempted, an exception is thrown by the runtime. It is possible to safely use [atomically](GHC-Conc-Sync.html#v:atomically "GHC.Conc.Sync") inside[unsafePerformIO](System-IO-Unsafe.html#v:unsafePerformIO "System.IO.Unsafe") or [unsafeInterleaveIO](System-IO-Unsafe.html#v:unsafeInterleaveIO "System.IO.Unsafe"), but the typechecker does not rule out programs that may attempt nested transactions, meaning that the programmer must take special care to prevent these.
However, there are functions for creating transactional variables that can always be safely called in [unsafePerformIO](System-IO-Unsafe.html#v:unsafePerformIO "System.IO.Unsafe"). See: [newTVarIO](GHC-Conc-Sync.html#v:newTVarIO "GHC.Conc.Sync"),[newTChanIO](Control-Concurrent-STM-TChan.html#v:newTChanIO "Control.Concurrent.STM.TChan"),[newBroadcastTChanIO](Control-Concurrent-STM-TChan.html#v:newBroadcastTChanIO "Control.Concurrent.STM.TChan"),[newTQueueIO](Control-Concurrent-STM-TQueue.html#v:newTQueueIO "Control.Concurrent.STM.TQueue"),[newTBQueueIO](Control-Concurrent-STM-TBQueue.html#v:newTBQueueIO "Control.Concurrent.STM.TBQueue"), and[newTMVarIO](Control-Concurrent-STM-TMVar.html#v:newTMVarIO "Control.Concurrent.STM.TMVar").
Using [unsafePerformIO](System-IO-Unsafe.html#v:unsafePerformIO "System.IO.Unsafe") inside of [atomically](GHC-Conc-Sync.html#v:atomically "GHC.Conc.Sync") is also dangerous but for different reasons. See [unsafeIOToSTM](GHC-Conc-Sync.html#v:unsafeIOToSTM "GHC.Conc.Sync") for more on this.
Retry execution of the current memory transaction because it has seen values in [TVar](GHC-Conc-Sync.html#t:TVar "GHC.Conc.Sync")s which mean that it should not continue (e.g. the [TVar](GHC-Conc-Sync.html#t:TVar "GHC.Conc.Sync")s represent a shared buffer that is now empty). The implementation may block the thread until one of the [TVar](GHC-Conc-Sync.html#t:TVar "GHC.Conc.Sync")s that it has read from has been updated. (GHC only)
orElse :: STM a -> STM a -> STM a Source #
Compose two alternative STM actions (GHC only).
If the first action completes without retrying then it forms the result of the [orElse](GHC-Conc-Sync.html#v:orElse "GHC.Conc.Sync"). Otherwise, if the first action retries, then the second action is tried in its place. If both actions retry then the [orElse](GHC-Conc-Sync.html#v:orElse "GHC.Conc.Sync") as a whole retries.
throwSTM :: Exception e => e -> STM a Source #
A variant of [throw](Control-Exception.html#v:throw "Control.Exception") that can only be used within the [STM](GHC-Conc-Sync.html#t:STM "GHC.Conc.Sync") monad.
Throwing an exception in STM aborts the transaction and propagates the exception. If the exception is caught via [catchSTM](GHC-Conc-Sync.html#v:catchSTM "GHC.Conc.Sync"), only the changes enclosed by the catch are rolled back; changes made outside of [catchSTM](GHC-Conc-Sync.html#v:catchSTM "GHC.Conc.Sync") persist.
If the exception is not caught inside of the [STM](GHC-Conc-Sync.html#t:STM "GHC.Conc.Sync"), it is re-thrown by[atomically](GHC-Conc-Sync.html#v:atomically "GHC.Conc.Sync"), and the entire [STM](GHC-Conc-Sync.html#t:STM "GHC.Conc.Sync") is rolled back.
Although [throwSTM](GHC-Conc-Sync.html#v:throwSTM "GHC.Conc.Sync") has a type that is an instance of the type of [throw](Control-Exception.html#v:throw "Control.Exception"), the two functions are subtly different:
throw e seq x ===> throw e
throwSTM e seq x ===> x
The first example will cause the exception e to be raised, whereas the second one won't. In fact, [throwSTM](GHC-Conc-Sync.html#v:throwSTM "GHC.Conc.Sync") will only cause an exception to be raised when it is used within the [STM](GHC-Conc-Sync.html#t:STM "GHC.Conc.Sync") monad. The [throwSTM](GHC-Conc-Sync.html#v:throwSTM "GHC.Conc.Sync") variant should be used in preference to [throw](Control-Exception.html#v:throw "Control.Exception") to raise an exception within the [STM](GHC-Conc-Sync.html#t:STM "GHC.Conc.Sync") monad because it guarantees ordering with respect to other [STM](GHC-Conc-Sync.html#t:STM "GHC.Conc.Sync") operations, whereas [throw](Control-Exception.html#v:throw "Control.Exception") does not.
catchSTM :: Exception e => STM a -> (e -> STM a) -> STM a Source #
Exception handling within STM actions.
`[catchSTM](GHC-Conc-Sync.html#v:catchSTM "GHC.Conc.Sync")` m f catches any exception thrown by m using [throwSTM](GHC-Conc-Sync.html#v:throwSTM "GHC.Conc.Sync"), using the function f to handle the exception. If an exception is thrown, any changes made by m are rolled back, but changes prior tom persist.
Shared memory locations that support atomic memory transactions.
Instances
Instances details
readTVarIO :: TVar a -> IO a Source #
Return the current value stored in a [TVar](GHC-Conc-Sync.html#t:TVar "GHC.Conc.Sync"). This is equivalent to
readTVarIO = atomically . readTVar
but works much faster, because it doesn't perform a complete transaction, it just reads the current value of the [TVar](GHC-Conc-Sync.html#t:TVar "GHC.Conc.Sync").
unsafeIOToSTM :: IO a -> STM a Source #
Unsafely performs IO in the STM monad. Beware: this is a highly dangerous thing to do.
- The STM implementation will often run transactions multiple times, so you need to be prepared for this if your IO has any side effects.
- The STM implementation will abort transactions that are known to be invalid and need to be restarted. This may happen in the middle of
[unsafeIOToSTM](GHC-Conc-Sync.html#v:unsafeIOToSTM "GHC.Conc.Sync"), so make sure you don't acquire any resources that need releasing (exception handlers are ignored when aborting the transaction). That includes doing any IO using Handles, for example. Getting this wrong will probably lead to random deadlocks. - The transaction may have seen an inconsistent view of memory when the IO runs. Invariants that you expect to be true throughout your program may not be true inside a transaction, due to the way transactions are implemented. Normally this wouldn't be visible to the programmer, but using
[unsafeIOToSTM](GHC-Conc-Sync.html#v:unsafeIOToSTM "GHC.Conc.Sync")can expose it.
withMVar :: MVar a -> (a -> IO b) -> IO b Source #
Provide an [IO](System-IO.html#t:IO "System.IO") action with the current value of an [MVar](Control-Concurrent-MVar.html#t:MVar "Control.Concurrent.MVar"). The [MVar](Control-Concurrent-MVar.html#t:MVar "Control.Concurrent.MVar") will be empty for the duration that the action is running.