Skip to content

Commit ca185ec

Browse files
committed
io-sim: execAtomically
1 parent 4f59536 commit ca185ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

io-sim/src/Control/Monad/IOSim/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ execAtomically :: forall s a c.
10251025
-> StmA s a
10261026
-> (StmTxResult s a -> ST s (SimTrace c))
10271027
-> ST s (SimTrace c)
1028-
execAtomically !time !tid !tlbl !nextVid0 action0 k0 =
1028+
execAtomically !time !tid !tlbl !nextVid0 !action0 !k0 =
10291029
go AtomicallyFrame Map.empty Map.empty [] [] nextVid0 action0
10301030
where
10311031
go :: forall b.

io-sim/src/Control/Monad/IOSimPOR/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@ execAtomically :: forall s a c.
13501350
-> StmA s a
13511351
-> (StmTxResult s a -> ST s (SimTrace c))
13521352
-> ST s (SimTrace c)
1353-
execAtomically time tid tlbl nextVid0 action0 k0 =
1353+
execAtomically !time !tid !tlbl !nextVid0 !action0 !k0 =
13541354
go AtomicallyFrame Map.empty Map.empty [] [] nextVid0 action0
13551355
where
13561356
go :: forall b.

0 commit comments

Comments
 (0)