ocaml-iocp icon indicating copy to clipboard operation
ocaml-iocp copied to clipboard

OCaml bindings to Windows' IOCP API

Results 2 ocaml-iocp issues
Sort by recently updated
recently updated
newest added

The standard inputs and outputs cannot be used with completion ports on Windows as they are not "overlapped". There seems to be two methods for providing async stdio outlined here:...

bug

Currently, the `file_descr` is wrapped in `Iocp.Handle` in order to reuse `Unix.openfile` but importantly, make this change: https://github.com/patricoferris/ocaml-iocp/blob/da5122b9f850de3c857e44bef90914a958d37e7b/src/iocp_stubs.c#L426-L428 There is probably a better way of achieving this by only augmenting...

enhancement