src/Pure/ML/ml_pid.ML
author wenzelm
Thu, 16 Jul 2020 22:24:03 +0200
changeset 72052 912f13865596
child 72114 d00220799735
permissions -rw-r--r--
support native PID for ML process;

(*  Title:      Pure/ML/ml_pid.ML
    Author:     Makarius

Native PID for ML process.
*)

signature ML_PID =
sig
  val get: unit -> int
end;

if ML_System.platform_is_windows then ML
\<open>
structure ML_PID: ML_PID =
struct

val get =
  Foreign.buildCall0
    (Foreign.getSymbol (Foreign.loadLibrary "kernel32.dll") "GetCurrentProcessId", (), Foreign.cInt);

end;
\<close>
else ML
\<open>
structure ML_PID: ML_PID =
struct

val get = Posix.ProcEnv.getpid #> Posix.Process.pidToWord #> SysWord.toLargeInt

end;
\<close>