From c7bc30a00b3ef5e4cbcbf870fd854fca6cb3c67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Proust?= Date: Thu, 18 Nov 2021 14:13:48 +0100 Subject: [PATCH] mention Lwt_domain in CHANGES --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 9d6f1ce33..5f7dbaf07 100644 --- a/CHANGES +++ b/CHANGES @@ -39,6 +39,8 @@ * In the Lwt_unix module, add `?cloexec:bool` optional arguments to functions that create file descriptors (`dup`, `dup2`, `pipe`, `pipe_in`, `pipe_out`, `socket`, `socketpair`, `accept`, `accept_n`). The `?cloexec` argument is simply forwarded to the wrapped Unix function (with OCaml >= 4.05, see PR ocaml/ocaml#650), or emulated as best-effort with `Unix.set_close_on_exec` on older OCaml versions (#327, #847, #872, #901, Antonin Décimo). + * Lwt_domain: helpers for using domainslib from Lwt (#860, Sudha Parimala) + ====== Misc ====== * Code quality improvement: remove an uneeded Obj.magic (#844, Benoit Montagu).