You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to reproduce the error with a way smaller example :
open Lwt
let ppool, plwt = Nproc.create 2
let () =
let _ = Lwt_main.run @@ Nproc.submit ppool (fun x -> ()) () in
let _ = Lwt_main.run @@ Nproc.submit ppool (fun x -> ()) () in ()
Hello!
Found out with @anmonteiro that after creating a pool of X threads,
nproc
seems to be writing out X-1 error messages:Minimum code to be reproduced can be found here: https://github.com/rizo/nproc/blob/master/example.ml
The work seems to be done in parallel either way, which is good, but it'd be great to get rid of this error message.
The text was updated successfully, but these errors were encountered: