package riot

  1. Overview
  2. Docs
An actor-model multi-core scheduler for OCaml 5

Install

Dune Dependency

Authors

Maintainers

Sources

riot-0.0.5.tbz
sha256=01b7b82ccc656b12b7315960d9df17eb4682b8f1af68e9fee33171fee1f9cf88
sha512=d8831d8a75fe43a7e8d16d2c0bb7d27f6d975133e17c5dd89ef7e575039c59d27c1ab74fbadcca81ddfbc0c74d1e46c35baba35ef825b36ac6c4e49d7a41d0c2

doc/src/riot.core/proc_registry.ml.html

Source file proc_registry.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module Exn = struct
  exception Name_already_registered of string * Pid.t
end

type t = {
  processes : (string, Pid.t) Hashtbl.t;
  names : (Pid.t, string) Hashtbl.t;
  lock : Mutex.t;
}

let create () =
  {
    lock = Mutex.create ();
    processes = Hashtbl.create 16_000;
    names = Hashtbl.create 16_000;
  }

let register t name pid =
  Mutex.lock t.lock;
  if Hashtbl.mem t.processes name then (
    Mutex.unlock t.lock;
    raise (Exn.Name_already_registered (name, pid)))
  else (
    Hashtbl.add t.processes name pid;
    Hashtbl.add t.names pid name;
    Mutex.unlock t.lock)

let unregister t name =
  Mutex.lock t.lock;
  let pid = Hashtbl.find t.processes name in
  Hashtbl.remove t.processes name;
  Hashtbl.remove t.names pid;
  Mutex.unlock t.lock

let remove t pid =
  Mutex.lock t.lock;
  (match Hashtbl.find_opt t.names pid with
  | Some name -> Hashtbl.remove t.processes name
  | None -> ());
  Hashtbl.remove t.names pid;
  Mutex.unlock t.lock

let find_pid t name =
  Mutex.lock t.lock;
  let pid = Hashtbl.find_opt t.processes name in
  Mutex.unlock t.lock;
  pid
OCaml

Innovation. Community. Security.