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_async.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_async.c')
-rw-r--r-- | erts/emulator/beam/erl_async.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_async.c b/erts/emulator/beam/erl_async.c index be691317ee..12c7631448 100644 --- a/erts/emulator/beam/erl_async.c +++ b/erts/emulator/beam/erl_async.c @@ -70,7 +70,6 @@ static ErlAsync* async_ready_list = NULL; /* Detach from driver */ static void async_detach(DE_Handle* dh) { - /* XXX:PaN what should happen here? we want to unload the driver or??? */ return; } @@ -176,7 +175,6 @@ int exit_async() static void async_add(ErlAsync* a, AsyncQueue* q) { - /* XXX:PaN Is this still necessary when ports lock drivers? */ if (is_internal_port(a->port)) { ERTS_LC_ASSERT(erts_drvportid2port(a->port)); /* make sure the driver will stay around */ |