diff options
author | Sverker Eriksson <[email protected]> | 2018-10-25 18:18:09 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2018-10-26 11:57:54 +0200 |
commit | dd2c35fbdc354d1897307a20a459f2b9178abb84 (patch) | |
tree | 5dcfd746bfbc364807f5380f2db6e3a153f34030 /erts/emulator/beam/erl_lock_check.c | |
parent | 15f8ca326070dde083bd59618d4b77c24dde06a5 (diff) | |
download | otp-dd2c35fbdc354d1897307a20a459f2b9178abb84.tar.gz otp-dd2c35fbdc354d1897307a20a459f2b9178abb84.tar.bz2 otp-dd2c35fbdc354d1897307a20a459f2b9178abb84.zip |
erts: Remove lock ordering of catree base nodes
We no longer lock more than one base node at a time.
We do however trylock a second base node at join.
Diffstat (limited to 'erts/emulator/beam/erl_lock_check.c')
-rw-r--r-- | erts/emulator/beam/erl_lock_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_lock_check.c b/erts/emulator/beam/erl_lock_check.c index 394e19f2fa..cfa63e7cd9 100644 --- a/erts/emulator/beam/erl_lock_check.c +++ b/erts/emulator/beam/erl_lock_check.c @@ -92,7 +92,7 @@ static erts_lc_lock_order_t erts_lock_order[] = { { "db_tab", "address" }, { "db_tab_fix", "address" }, { "db_hash_slot", "address" }, - { "erl_db_catree_base_node", "term" }, + { "erl_db_catree_base_node", NULL }, { "erl_db_catree_route_node", "index" }, { "resource_monitors", "address" }, { "driver_list", NULL }, |