Skip to content

Commit

Permalink
Clarifying that two AVERs are implementing .assume.parked in response…
Browse files Browse the repository at this point in the history
… to review comment <#298 (comment)>.
  • Loading branch information
rptb1 committed Nov 27, 2024
1 parent 25931a4 commit 984d48d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/trans.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ Res TransformAddOldNew(Transform transform,
lists (old_list, new_list), using ArenaRead. Insisting on
parking keeps things simple. */
arena = transform->arena;
AVER(ArenaGlobals(arena)->clamped);
AVER(arena->busyTraces == TraceSetEMPTY);
AVER(ArenaGlobals(arena)->clamped); /* .assume.parked */
AVER(arena->busyTraces == TraceSetEMPTY); /* .assume.parked */

res = TableGrow(transform->oldToNew, count);
if (res != ResOK)
Expand Down

0 comments on commit 984d48d

Please sign in to comment.