Skip to content

Commit f52f2ef

Browse files
committed
flambda-backend: Install autogenerated camlinternalAtomic.mli
1 parent 2af9232 commit f52f2ef

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

stdlib/camlinternalAtomic.mli

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
type 'a t = { mutable v : 'a; }
2+
val make : 'a -> 'a t
3+
val get : 'a t -> 'a
4+
val set : 'a t -> 'a -> unit
5+
val exchange : 'a t -> 'a -> 'a
6+
val compare_and_set : 'a t -> 'a -> 'a -> bool
7+
val fetch_and_add : int t -> int -> int
8+
val incr : int t -> unit
9+
val decr : int t -> unit

0 commit comments

Comments
 (0)