Skip to content

Commit 00f837a

Browse files
committed
fixup! CP-32622: introduce select-as-epoll in Unixext
1 parent 838e7e5 commit 00f837a

File tree

1 file changed

+2
-0
lines changed
  • ocaml/libs/xapi-stdext/lib/xapi-stdext-unix

1 file changed

+2
-0
lines changed

ocaml/libs/xapi-stdext/lib/xapi-stdext-unix/unixext.ml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,8 @@ let pollerr_set = Polly.Events.pri
684684

685685
let to_milliseconds ms = ms *. 1e3 |> ceil |> int_of_float
686686

687+
(* we could change lists to proper Sets once the Unix.select to Unixext.select conversion is done *)
688+
687689
let readable fd (rd, wr, ex) = (fd :: rd, wr, ex)
688690

689691
let writable fd (rd, wr, ex) = (rd, fd :: wr, ex)

0 commit comments

Comments
 (0)