-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,26 +30,27 @@ Copyright (c) 2017, Nicolas ASSOUAD <[email protected]> | |
|
||
(** {1 Useful Information} | ||
{2 Domain-Specific Data Structures} | ||
Some data structures are optimized for specific domain configurations. These | ||
restrictions enhance performance but must be adhered to for maintaining safety | ||
properties. These limitations are documented and often reflected in the data | ||
structure's name. For example, a single-consumer queue should only have one | ||
domain performing `pop` operations at any time. | ||
For more details, refer to this | ||
{{: https://github.com/ocaml-multicore/saturn/blob/main/doc/domain-role.md}{document}}. | ||
{2 Composability} | ||
Composability is the ability to combine functions while preserving their | ||
properties, such as atomic consistency (linearizability) and progress | ||
guarantees (e.g., lock-freedom). Saturn's data structures, however, are not | ||
composable. | ||
For more details, refer to this | ||
{{: https://github.com/ocaml-multicore/saturn/blob/main/doc/composability.md}{document}}. | ||
*) | ||
{2 Domain-Specific Data Structures} | ||
Some data structures are optimized for specific domain configurations. These | ||
restrictions enhance performance but must be adhered to for maintaining | ||
safety properties. These limitations are documented and often reflected in | ||
the data structure's name. For example, a single-consumer queue should only | ||
have one domain performing `pop` operations at any time. | ||
For more details, refer to this | ||
{{:https://github.com/ocaml-multicore/saturn/blob/main/doc/domain-role.md} | ||
document}. | ||
{2 Composability} | ||
Composability is the ability to combine functions while preserving their | ||
properties, such as atomic consistency (linearizability) and progress | ||
guarantees (e.g., lock-freedom). Saturn's data structures, however, are not | ||
composable. | ||
For more details, refer to this | ||
{{:https://github.com/ocaml-multicore/saturn/blob/main/doc/composability.md} | ||
document}. *) | ||
|
||
(** {2 Unsafe Data Structures} | ||
|