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-25 10:23:00 +0100 |
commit | c7a07bf984739bcc679d800e5383c01e1d07ffa5 (patch) | |
tree | 5eff0911ca1a2155e0624344a06c589c110509f2 /erts/emulator/beam/erl_vm.h | |
parent | 3d184db38d2389c463dd3ad88c34992f8427f30d (diff) | |
download | otp-c7a07bf984739bcc679d800e5383c01e1d07ffa5.tar.gz otp-c7a07bf984739bcc679d800e5383c01e1d07ffa5.tar.bz2 otp-c7a07bf984739bcc679d800e5383c01e1d07ffa5.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 |