diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-03-04 17:08:31 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-03-04 17:08:31 +0100 |
commit | e330a493032c35c0ca69cd78142e2ec03f5e370b (patch) | |
tree | 42c68f822ca23ffd503b5bd4b2044334b5fca2dc /erts/emulator/beam/erl_vm.h | |
parent | 14ddc5594d74979a15a256a41fba5f1297aeaa1a (diff) | |
download | otp-e330a493032c35c0ca69cd78142e2ec03f5e370b.tar.gz otp-e330a493032c35c0ca69cd78142e2ec03f5e370b.tar.bz2 otp-e330a493032c35c0ca69cd78142e2ec03f5e370b.zip |
erts: Enable command line argument for initial pd size
Use '+hpds size' to set initial process dictionary size for spawned processes.
Diffstat (limited to 'erts/emulator/beam/erl_vm.h')
-rw-r--r-- | erts/emulator/beam/erl_vm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_vm.h b/erts/emulator/beam/erl_vm.h index b7de8208ad..6687b044ee 100644 --- a/erts/emulator/beam/erl_vm.h +++ b/erts/emulator/beam/erl_vm.h @@ -174,6 +174,7 @@ extern int H_MIN_SIZE; /* minimum (heap + stack) */ extern int BIN_VH_MIN_SIZE; /* minimum virtual (bin) heap */ extern int erts_atom_table_size;/* Atom table size */ +extern int erts_pd_initial_size;/* Initial Process dictionary table size */ #define ORIG_CREATION 0 #define INTERNAL_CREATION 255 |