Revision 7598fb94d59178d65bd8d2892c19356290f5d4e3 authored by Gabriel Scherer on 08 May 2016, 13:36:58 UTC, committed by Roberto Di Cosmo on 12 May 2016, 08:08:39 UTC
1 parent 5813de5
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