aboutsummaryrefslogtreecommitdiffhomepage
path: root/stm/stm.ml
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-06-10 04:12:11 +0200
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-12-11 11:59:07 +0100
commita758aac39aa330911f5f589ab3cae1bebed1e9ce (patch)
tree17e8e7c41a194a8ac3d17c9fa922da1177e574d4 /stm/stm.ml
parenta77f3a3e076e273af35ad520cae2eef0e3552811 (diff)
[stm] Move process_id to Spawned.
This brings us one step closer to actually moving all STM flags to `stm`.
Diffstat (limited to 'stm/stm.ml')
-rw-r--r--stm/stm.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/stm/stm.ml b/stm/stm.ml
index 8aa832da8..877263096 100644
--- a/stm/stm.ml
+++ b/stm/stm.ml
@@ -10,8 +10,8 @@
(* let stm_debug () = !Flags.debug *)
let stm_debug () = !Flags.stm_debug
-let stm_pr_err s = Format.eprintf "%s] %s\n%!" (System.process_id ()) s
-let stm_pp_err pp = Format.eprintf "%s] @[%a@]\n%!" (System.process_id ()) Pp.pp_with pp
+let stm_pr_err s = Format.eprintf "%s] %s\n%!" (Spawned.process_id ()) s
+let stm_pp_err pp = Format.eprintf "%s] @[%a@]\n%!" (Spawned.process_id ()) Pp.pp_with pp
let stm_prerr_endline s = if stm_debug () then begin stm_pr_err (s ()) end else ()
let stm_pperr_endline s = if stm_debug () then begin stm_pp_err (s ()) end else ()
@@ -355,7 +355,7 @@ end = struct (* {{{ *)
if stm_debug () then Flags.we_are_parsing := false;
let fname =
- "stm_" ^ Str.global_replace (Str.regexp " ") "_" (System.process_id ()) in
+ "stm_" ^ Str.global_replace (Str.regexp " ") "_" (Spawned.process_id ()) in
let string_of_transaction = function
| Cmd { cast = t } | Fork (t, _,_,_) ->
(try Pp.string_of_ppcmds (pr_ast t) with _ -> "ERR")