diff options
author | Sverker Eriksson <[email protected]> | 2014-01-10 15:47:16 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2014-01-10 15:47:16 +0100 |
commit | f7f08e93cc1e976cb2b37d450996cde32be8aae2 (patch) | |
tree | e0dca370b4af2c3b9d61cb8876e444ff34c82350 /erts/emulator/beam/erl_process.h | |
parent | b49efb826e191a0ef18da7ebdb3dd9e56fe654da (diff) | |
download | otp-f7f08e93cc1e976cb2b37d450996cde32be8aae2.tar.gz otp-f7f08e93cc1e976cb2b37d450996cde32be8aae2.tar.bz2 otp-f7f08e93cc1e976cb2b37d450996cde32be8aae2.zip |
erts: Remove the extra_root feature from the process structure
as we don't use it and instead have the feature to disable GC
during trapping BIFs.
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index 043621125c..e35d1c785c 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 1996-2013. All Rights Reserved. + * Copyright Ericsson AB 1996-2014. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -711,13 +711,6 @@ struct ErtsPendingSuspend_ { #endif -typedef struct ErlExtraRootSet_ ErlExtraRootSet; -struct ErlExtraRootSet_ { - Eterm *objv; - Uint sz; - void (*cleanup)(ErlExtraRootSet *); -}; - /* Defines to ease the change of memory architecture */ # define HEAP_START(p) (p)->heap # define HEAP_TOP(p) (p)->htop @@ -811,8 +804,6 @@ struct process { ErlMessageQueue msg; /* Message queue */ - ErlExtraRootSet *extra_root; /* Used by trapping BIF's */ - union { ErtsBifTimer *bif_timers; /* Bif timers aiming at this process */ void *terminate; |