aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_bif_info.c
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2017-12-04 10:29:26 +0100
committerJohn Högberg <[email protected]>2017-12-04 13:40:29 +0100
commitfb99e17d04bddfcb43f54388c93302ea32d60b4a (patch)
tree5198090b4b6d195b7f718ef1df35cbd42851c756 /erts/emulator/beam/erl_bif_info.c
parent2302ea8ca97b8a9075e9234d15430c47d3a115c8 (diff)
downloadotp-fb99e17d04bddfcb43f54388c93302ea32d60b4a.tar.gz
otp-fb99e17d04bddfcb43f54388c93302ea32d60b4a.tar.bz2
otp-fb99e17d04bddfcb43f54388c93302ea32d60b4a.zip
Fix process name resolution in lcnt results
Diffstat (limited to 'erts/emulator/beam/erl_bif_info.c')
-rw-r--r--erts/emulator/beam/erl_bif_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_bif_info.c b/erts/emulator/beam/erl_bif_info.c
index 0547b4d75c..80adca0072 100644
--- a/erts/emulator/beam/erl_bif_info.c
+++ b/erts/emulator/beam/erl_bif_info.c
@@ -4578,7 +4578,7 @@ static Eterm lcnt_build_lock_stats_term(Eterm **hpp, Uint *szp, erts_lcnt_lock_s
static Eterm lcnt_pretty_print_lock_id(erts_lcnt_lock_info_t *info) {
Eterm id = info->id;
- if((info->flags & ERTS_LOCK_FLAGS_MASK_TYPE) == ERTS_LOCK_TYPE_PROCLOCK) {
+ if((info->flags & ERTS_LOCK_FLAGS_MASK_TYPE) == ERTS_LOCK_FLAGS_TYPE_PROCLOCK) {
/* Use registered names as id's for process locks if available. Thread
* progress is delayed since we may be running on a dirty scheduler. */
ErtsThrPrgrDelayHandle delay_handle;