aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_process_dict.h
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2015-12-10 17:47:37 +0100
committerSverker Eriksson <[email protected]>2015-12-15 12:08:02 +0100
commit0f32d250876e7bb226fb96e07fb31734ba7d16f2 (patch)
treea38b1ea63152c5163b39605efe9154403eae03ea /erts/emulator/beam/erl_process_dict.h
parent5801defc866e34c6effd49b9dec995b5dac164f3 (diff)
downloadotp-0f32d250876e7bb226fb96e07fb31734ba7d16f2.tar.gz
otp-0f32d250876e7bb226fb96e07fb31734ba7d16f2.tar.bz2
otp-0f32d250876e7bb226fb96e07fb31734ba7d16f2.zip
erts: Rename proc dict size to arraySize
for naming style consistency.
Diffstat (limited to 'erts/emulator/beam/erl_process_dict.h')
-rw-r--r--erts/emulator/beam/erl_process_dict.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_process_dict.h b/erts/emulator/beam/erl_process_dict.h
index f0d57da1e6..dac214c8a1 100644
--- a/erts/emulator/beam/erl_process_dict.h
+++ b/erts/emulator/beam/erl_process_dict.h
@@ -24,8 +24,8 @@
typedef struct proc_dict {
unsigned int sizeMask;
- unsigned int size;
unsigned int usedSlots;
+ unsigned int arraySize;
unsigned int splitPosition;
Uint numElements;
Eterm data[1]; /* The beginning of an array of erlang terms */