Skip to content

Commit d4f3dd2

Browse files
committed
[new release] kcas_data and kcas (0.4.0)
CHANGES: All notable changes to this project will be documented in this file. ## 0.4.0 - Allocation of location ids in a transaction log friendly order (@polytypic) - Per location operating mode selection (@Dashy-Dolphin, review: @polytypic) - Injectivity `!'a Kcas_data.Dllist.t` annotation (@polytypic) ## 0.3.1 - Added doubly-linked list `Dllist` to `kcas_data` (@polytypic) - Minor optimizations (@polytypic) ## 0.3.0 - Remove the `Tx` API (@polytypic) - Add blocking support to turn kcas into a proper STM (@polytypic, review: @lyrm) - Add periodic validation of transactions (@polytypic) ## 0.2.4 - Introduce `kcas_data` companion package of composable lock-free data structures (@polytypic) - Add `is_in_log` operation to determine whether a location has been accessed by a transaction (@polytypic) - Add `Loc.modify` (@polytypic) - Add transactional `swap` operation to exchange contents of two locations (@polytypic) - Injectivity `!'a Loc.t` and variance `+'a Tx.t` annotations (@polytypic) ## 0.2.3 - Add support for post commit actions to transactions (@polytypic) - Bring `Xt` and `Tx` access combinators to parity and add `compare_and_swap` (@polytypic) ## 0.2.2 - New explicit transaction log passing API based on idea by @gasche (@polytypic, review: @samoht and @lyrm) ## 0.2.1 - New k-CAS-n-CMP algorithm extending the GKMZ algorithm (@polytypic, review: @bartoszmodelski) ## 0.2.0 - Complete redesign adding a new transaction API (@polytypic, review: @bartoszmodelski) ## 0.1.8 - Fix a bug in GKMZ implementation (@polytypic, review: @bartoszmodelski) ## 0.1.7 - Change to use the new GKMZ algorithm (@polytypic, review: @bartoszmodelski) ## 0.1.6 - Add preflights sorting and checks (@bartoszmodelski, review: @polytypic) ## 0.1.5 - Republish in opam (update opam, dune) (@tmcgilchrist, review: @Sudha247)
1 parent 1398636 commit d4f3dd2

File tree

2 files changed

+77
-0
lines changed
  • packages
    • kcas_data/kcas_data.0.4.0
    • kcas/kcas.0.4.0

2 files changed

+77
-0
lines changed

packages/kcas/kcas.0.4.0/opam

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Software transactional memory based on lock-free multi-word compare-and-set"
4+
maintainer: ["KC Sivaramakrishnan <[email protected]>"]
5+
authors: ["KC Sivaramakrishnan <[email protected]>"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/kcas"
8+
bug-reports: "https://github.com/ocaml-multicore/kcas/issues"
9+
depends: [
10+
"dune" {>= "3.3"}
11+
"ocaml" {>= "5.0"}
12+
"domain-local-await" {>= "0.1.0"}
13+
"mdx" {>= "1.10.0" & with-test}
14+
"odoc" {with-doc}
15+
]
16+
build: [
17+
["dune" "subst"] {dev}
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
]
30+
dev-repo: "git+https://github.com/ocaml-multicore/kcas.git"
31+
url {
32+
src:
33+
"https://github.com/ocaml-multicore/kcas/releases/download/0.4.0/kcas-0.4.0.tbz"
34+
checksum: [
35+
"sha256=15fbb643bbdf741fc8deba8144a3826690684b6af4ca2b89f596145b51db51e8"
36+
"sha512=b8b23de11a1becb5818975501802ad134f64546ebd45ef7b7104c88d40e3916afbd8465b0950e4f3e21ced49306d04aff1d308e918156df12c23a52bf335b278"
37+
]
38+
}
39+
x-commit-hash: "ca8618e51988e1f467b08f5bc858562d81ee5126"
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Compositional lock-free data structures and primitives for communication and synchronization"
4+
maintainer: ["KC Sivaramakrishnan <[email protected]>"]
5+
authors: ["KC Sivaramakrishnan <[email protected]>"]
6+
license: "ISC"
7+
homepage: "https://github.com/ocaml-multicore/kcas"
8+
bug-reports: "https://github.com/ocaml-multicore/kcas/issues"
9+
depends: [
10+
"dune" {>= "3.3"}
11+
"kcas" {= version}
12+
"mdx" {>= "1.10.0" & with-test}
13+
"odoc" {with-doc}
14+
]
15+
build: [
16+
["dune" "subst"] {dev}
17+
[
18+
"dune"
19+
"build"
20+
"-p"
21+
name
22+
"-j"
23+
jobs
24+
"@install"
25+
"@runtest" {with-test}
26+
"@doc" {with-doc}
27+
]
28+
]
29+
dev-repo: "git+https://github.com/ocaml-multicore/kcas.git"
30+
url {
31+
src:
32+
"https://github.com/ocaml-multicore/kcas/releases/download/0.4.0/kcas-0.4.0.tbz"
33+
checksum: [
34+
"sha256=15fbb643bbdf741fc8deba8144a3826690684b6af4ca2b89f596145b51db51e8"
35+
"sha512=b8b23de11a1becb5818975501802ad134f64546ebd45ef7b7104c88d40e3916afbd8465b0950e4f3e21ced49306d04aff1d308e918156df12c23a52bf335b278"
36+
]
37+
}
38+
x-commit-hash: "ca8618e51988e1f467b08f5bc858562d81ee5126"

0 commit comments

Comments
 (0)