Skip to content

Commit

Permalink
Fix sync timing call
Browse files Browse the repository at this point in the history
Co-authored-by: Simmo Saan <simmo.saan@gmail.com>
  • Loading branch information
michael-schwarz and sim642 authored Dec 19, 2024
1 parent 1b8d70a commit 196bf69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analyses/basePriv.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,7 @@ struct
let write_global ?invariant ask getg sideg st x v = time "write_global" (Priv.write_global ?invariant ask getg sideg st x) v
let lock ask getg cpa m = time "lock" (Priv.lock ask getg cpa) m
let unlock ask getg sideg st m = time "unlock" (Priv.unlock ask getg sideg st) m
let sync reason man = time "sync" (Priv.sync reason) man
let sync ask getg sideg st reason = time "sync" (Priv.sync ask getg sideg st) reason
let escape ask getg sideg st escaped = time "escape" (Priv.escape ask getg sideg st) escaped
let enter_multithreaded ask getg sideg st = time "enter_multithreaded" (Priv.enter_multithreaded ask getg sideg) st
let threadenter ask st = time "threadenter" (Priv.threadenter ask) st
Expand Down

0 comments on commit 196bf69

Please sign in to comment.