diff options
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index 865ac6c43f..fca83dba8f 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -792,6 +792,11 @@ struct process { ErlMessageQueue msg; /* Message queue */ + Eterm *extra_root; /* Extra root set, used e.g. by yielding bifs. */ + Uint extra_root_sz; /* Size of extra root set. */ + ErtsAlcType_t extra_root_allocator; /* Type of memory allocator used, + used for freeing extra_root if process dies. */ + union { ErtsBifTimer *bif_timers; /* Bif timers aiming at this process */ void *terminate; |