aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_db_util.h
diff options
context:
space:
mode:
authorPatrik Nyblom <[email protected]>2010-08-13 15:59:33 +0200
committerPatrik Nyblom <[email protected]>2010-08-19 10:44:10 +0200
commitd36f3b0ab48aced7668974530549004b4f16075f (patch)
tree14da9e194bfb8c9359797fb73601211f40dc94c0 /erts/emulator/beam/erl_db_util.h
parent871fdb232d7facc58c202ef81634a12fbdcfefb4 (diff)
downloadotp-d36f3b0ab48aced7668974530549004b4f16075f.tar.gz
otp-d36f3b0ab48aced7668974530549004b4f16075f.tar.bz2
otp-d36f3b0ab48aced7668974530549004b4f16075f.zip
Remove binary overhead counter from ets objects
As the overhead counter got larger and never really was needed in ets objects, I removed them. A few stray comments of XXX:PaN type from halfword dev removed in the process.
Diffstat (limited to 'erts/emulator/beam/erl_db_util.h')
-rw-r--r--erts/emulator/beam/erl_db_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_db_util.h b/erts/emulator/beam/erl_db_util.h
index 672c5f2cd1..0f333e8b34 100644
--- a/erts/emulator/beam/erl_db_util.h
+++ b/erts/emulator/beam/erl_db_util.h
@@ -57,7 +57,7 @@
* A datatype for a database entry stored out of a process heap
*/
typedef struct db_term {
- ErlOffHeap off_heap; /* Off heap data for term. */
+ struct erl_off_heap_header* first_oh; /* Off heap data for term. */
Uint size; /* Size of term in "words" */
Eterm tpl[1]; /* Untagged "constant pointer" to top tuple */
/* (assumed to be first in buffer) */