diff options
author | Patrik Nyblom <[email protected]> | 2010-08-13 15:59:33 +0200 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2010-08-19 10:44:10 +0200 |
commit | d36f3b0ab48aced7668974530549004b4f16075f (patch) | |
tree | 14da9e194bfb8c9359797fb73601211f40dc94c0 /erts/emulator/beam/erl_bif_ddll.c | |
parent | 871fdb232d7facc58c202ef81634a12fbdcfefb4 (diff) | |
download | otp-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_bif_ddll.c')
-rw-r--r-- | erts/emulator/beam/erl_bif_ddll.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_bif_ddll.c b/erts/emulator/beam/erl_bif_ddll.c index 9d5f0d9c02..2c2e283f65 100644 --- a/erts/emulator/beam/erl_bif_ddll.c +++ b/erts/emulator/beam/erl_bif_ddll.c @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 2006-2009. All Rights Reserved. + * Copyright Ericsson AB 2006-2010. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -1646,7 +1646,8 @@ static int do_unload_driver_entry(DE_Handle *dh, Eterm *save_name) if (save_name != NULL) { *save_name = mkatom(q->name); } - /* XXX:PaN Future locking problems? Don't dare to let go of the diver_list lock here!*/ + /* Future locking problems? Don't dare to let go of the + diver_list lock here!*/ if (q->finish) { int fpe_was_unmasked = erts_block_fpe(); (*(q->finish))(); |