atomic-primops-0.6.1.1: A safe approach to CAS and other atomic ops in Haskell.

Safe HaskellNone
LanguageHaskell2010

Data.Atomics.Internal

Contents

Description

This module provides only the raw primops (and necessary types) for atomic operations.

Synopsis

Documentation

casIntArray# :: MutableByteArray# d -> Int# -> Int# -> Int# -> State# d -> (#State# d, Int##)

Machine-level atomic compare and swap on a word within a ByteArray.

fetchAddIntArray# :: MutableByteArray# d -> Int# -> Int# -> State# d -> (#State# d, Int##)

Machine-level word-sized fetch-and-add within a ByteArray.

casArrayTicketed# :: MutableArray# RealWorld a -> Int# -> Ticket a -> Ticket a -> State# RealWorld -> (#State# RealWorld, Int#, Ticket a#) Source

Unsafe, machine-level atomic compare and swap on an element within an Array.

data Ticket a Source

When performing compare-and-swaps, the ticket encapsulates proof that a thread observed a specific previous value of a mutable variable. It is provided in lieu of the "old" value to compare-and-swap.

Design note: Tickets exist to hide objects from the GHC compiler, which can normally perform many optimizations that change pointer equality. A Ticket, on the other hand, is a first-class object that can be handled by the user, but will not have its pointer identity changed by compiler optimizations (but will of course, change addresses during garbage collection).

Instances

Eq (Ticket a) 
Show (Ticket a) 

Very unsafe, not to be used

ptrEq :: a -> a -> Bool Source