diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-03-12 10:33:29 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-03-12 10:33:29 +0100 |
commit | 306d7bc2282c8ff9545ae3a9e958b2746677958f (patch) | |
tree | 0431c97ed38598371e4c44f3ab1d5a7fe0696925 /erts/emulator/beam/erl_process_dict.c | |
parent | c87e11b41c28318086ec612f5ad10bbc9d26f955 (diff) | |
parent | 93f0ff928b89dce4e62e4017065d87fcc5cf4cf8 (diff) | |
download | otp-306d7bc2282c8ff9545ae3a9e958b2746677958f.tar.gz otp-306d7bc2282c8ff9545ae3a9e958b2746677958f.tar.bz2 otp-306d7bc2282c8ff9545ae3a9e958b2746677958f.zip |
Merge branch 'egil/process_dictionary-initial-size/OTP-12535'
* egil/process_dictionary-initial-size/OTP-12535:
erts: Document option 'hpds'
erts: Enable command line argument for initial pd size
Diffstat (limited to 'erts/emulator/beam/erl_process_dict.c')
-rw-r--r-- | erts/emulator/beam/erl_process_dict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_process_dict.c b/erts/emulator/beam/erl_process_dict.c index 3ce707efda..00761f2d0e 100644 --- a/erts/emulator/beam/erl_process_dict.c +++ b/erts/emulator/beam/erl_process_dict.c @@ -47,7 +47,7 @@ /* Hash constant macros */ #define MAX_HASH 1342177280UL -#define INITIAL_SIZE 10 +#define INITIAL_SIZE (erts_pd_initial_size) /* Hash utility macros */ #define HASH_RANGE(PDict) ((PDict)->homeSize + (PDict)->splitPosition) |