diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-08-23 18:07:30 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2017-01-25 11:56:28 +0100 |
commit | 995ab280a4dd050acbac0d2b824bcb3178811ae6 (patch) | |
tree | 4c15e72f04376a6508ff82a119daffd783f8d63e /lib/mnesia/src/mnesia.hrl | |
parent | 4432ac28c118622c2994440b5be3bff0bc77cc83 (diff) | |
download | otp-995ab280a4dd050acbac0d2b824bcb3178811ae6.tar.gz otp-995ab280a4dd050acbac0d2b824bcb3178811ae6.tar.bz2 otp-995ab280a4dd050acbac0d2b824bcb3178811ae6.zip |
mnesia: Remove mnesia_frag_old_hash hash module
The module mnesia_frag_old_hash utilized the broken erlang:hash/2 function
which has been deprecated for a long time. Since erlang:hash/2 is now removed
there is no point in having this module any more.
Diffstat (limited to 'lib/mnesia/src/mnesia.hrl')
-rw-r--r-- | lib/mnesia/src/mnesia.hrl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/mnesia/src/mnesia.hrl b/lib/mnesia/src/mnesia.hrl index 0716dd87c8..da7e662288 100644 --- a/lib/mnesia/src/mnesia.hrl +++ b/lib/mnesia/src/mnesia.hrl @@ -49,12 +49,12 @@ %% It's important that counter is first, since we compare tid's --record(tid, +-record(tid, {counter, %% serial no for tid pid}). %% owner of tid --record(tidstore, +-record(tidstore, {store, %% current ets table for tid up_stores = [], %% list of upper layer stores for nested trans level = 1}). %% transaction level @@ -128,5 +128,4 @@ mnesia_lib:eval_debug_fun(I, C, ?FILE, ?LINE)). -else. -define(eval_debug_fun(I, C), ok). --endif. - +-endif. |