Skip to content

Commit

Permalink
fixup! Fix performance regression caused by a bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorng committed Aug 29, 2024
1 parent 443b90a commit c5d85e0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions erts/emulator/beam/erl_process.h
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,15 @@ struct process {

Eterm* heap; /* Heap start */
Eterm* hend; /* Heap end */

/* If abandoned_heap is not a NULL pointer, it points to the heap
* that was active when delay_garbage_collection() in erl_gc.c was
* called. The high water mark that was active at that time is
* saved in p->hend[0].
*/

Eterm* abandoned_heap;

Uint heap_sz; /* Size of heap in words */
Uint min_heap_size; /* Minimum size of heap (in words). */
Uint min_vheap_size; /* Minimum size of virtual heap (in words). */
Expand Down

0 comments on commit c5d85e0

Please sign in to comment.