File: is_closing.ml

package info (click to toggle)
ocaml-luv 0.5.14-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,504 kB
  • sloc: ml: 11,130; makefile: 6,223; sh: 4,592; ansic: 1,517; python: 38
file content (9 lines) | stat: -rw-r--r-- 411 bytes parent folder | download
1
2
3
4
5
6
7
8
9
(* Checks is_closing for handles in general. This isn't specifically a timer
   test. Timers are just one of the simplest kinds of handle. *)
let () =
  Helpers.with_timer @@ fun timer ->
  Printf.printf "%b\n" (Luv.Handle.is_closing timer);
  Luv.Handle.close timer ignore;
  Printf.printf "%b\n" (Luv.Handle.is_closing timer);
  Luv.Loop.run () |> ignore;
  Printf.printf "%b\n" (Luv.Handle.is_closing timer)