package ocaml-unikraft-arm64

  1. Overview
  2. Docs
OCaml cross compiler to the freestanding Unikraft arm64 backends

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v1.2.0.tar.gz
sha256=ca18a45ef86791d5ffa18436945fbec850b6f3dd68a6a62753b4cb1b6999b19a

doc/stdlib/Stdlib/Atomic/Loc/index.html

Module Atomic.LocSource

Atomic "locations", such as record fields.

  • since 5.4
Sourcetype 'a t = 'a atomic_loc

This module exposes a dedicated type 'a Atomic.Loc.t for atomic locations (storing a value of type 'a) inside objects that may not be atomic references. It is used in particular for atomic record fields: if a record r has an atomic field f of type foo, then [%atomic.loc r.f] has type foo Atomic.Loc.t.

The API below mirrors the API to access atomic references, see the documentation above for more information.

Sourceval get : 'a t -> 'a
Sourceval set : 'a t -> 'a -> unit
Sourceval exchange : 'a t -> 'a -> 'a
Sourceval compare_and_set : 'a t -> 'a -> 'a -> bool
Sourceval fetch_and_add : int t -> int -> int
Sourceval incr : int t -> unit
Sourceval decr : int t -> unit