Revision b1abe5315681b1356ec71b1bd670bbc32ca95cb7 authored by Roberto Di Cosmo on 26 October 2016, 15:51:57 UTC, committed by GitHub on 26 October 2016, 15:51:57 UTC
Only wait for the children started by parmap
2 parent s 10e2437 + 99d9d23
Raw File
setcore.ml
(* uses the native affinity interface to 
   declare that the current process should be
   attached to core number n *)

external numcores: unit -> int = "numcores"
external setcore: int -> unit = "setcore"
back to top