Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lwt/cohttp_lwt_unix_io.ml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
}}}*)

module CD = Cohttp_lwt_unix_debug
let () = Sys.(set_signal sigpipe Signal_ignore)
let () =
if Sys.os_type <> "Win32" then
Sys.(set_signal sigpipe Signal_ignore);

type 'a t = 'a Lwt.t
let (>>=) = Lwt.bind
Expand Down