Skip to content

Instantly share code, notes, and snippets.

View polytypic's full-sized avatar
⏸️

Vesa Karvonen polytypic

⏸️
  • Helsinki, Finland
View GitHub Profile
@polytypic
polytypic / support-for-fls-in-the-ocaml-runtime.md
Created October 23, 2024 09:25
Support for FLS in the OCaml runtime

Support for FLS in the OCaml runtime


OCaml multicore architecture

  • DLS = Domain Local Storage
  • TLS = Thread Local Storage
  • FLS = Fiber Local Storage
@polytypic
polytypic / .article.md
Last active November 22, 2024 08:21
Fix OCaml

Every time I look at ocaml/ocaml code for more than a few seconds, I spot issues. This collects some of them. Some day I'll just learn to shrug and move on.

@polytypic
polytypic / picos-dependencies-border_10.svg
Last active March 25, 2025 10:05
Picos — Interoperable effects based concurrency
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@polytypic
polytypic / article.md
Last active April 27, 2024 19:34
Picos and direct style unikernels at MirageOS retreat April 2024
@polytypic
polytypic / article.md
Last active February 15, 2024 09:47
Fear the `Obj.magic`

Fear the Obj.magic

Reaction of a junior OCaml programmer being suggested to use Obj.magic

Let me first quote a paragraph from the Memory Representation of Values (with my emphasis):

Obj is an undocumented module that exposes the internals of the OCaml compiler and runtime. It is very useful for

@polytypic
polytypic / article.md
Last active February 16, 2024 15:27
A lock-free starvation avoiding bag

A lock-free starvation avoiding bag

module type Bag = sig
  type 'a t
  val create : unit -> 'a t
  val to_list : 'a t -> 'a list
  type 'a handle
  val add : 'a t -> 'a -> 'a handle
  val remove : 'a t -> 'a handle -> unit
@polytypic
polytypic / article.md
Last active January 9, 2024 12:02
A hack to implement efficient TLS (thread-local-storage)
@polytypic
polytypic / article.md
Last active March 6, 2024 18:00
Using `[@poll error]` attribute to implement systhread safe data structures

For a long time OCaml has supported lightweight threads exposed via the Thread module. These threads are often called “systhreads”, but I will simply call them “threads” in this post.

The OCaml Stdlib also provides many mutable data structures such as Hashtbl, Queue, and Stack. As the documentation alerts, none of these are thread-safe.

@polytypic
polytypic / article.md
Last active March 19, 2025 02:10
A pattern for using GADTs to subset cases

A pattern for using GADTs to subset cases

Consider the following straightforward mutable queue implementation using two stacks:

type 'a adt_queue = {
  mutable head : 'a head;
  mutable tail : 'a tail;
}
@polytypic
polytypic / skiplist.ml
Last active November 13, 2023 09:26
A lock-free skiplist
(* Copyright (c) 2023 Vesa Karvonen
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM