Revision 0ffe4b8d0885688c21bb4fe07f7a52c198e55285 authored by Francois Berenger on 02 October 2019, 03:00:42 UTC, committed by Francois Berenger on 02 October 2019, 03:00:42 UTC
to follow more closely the one in opam-repository
1 parent c4a31a8
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