aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_nif.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2019-02-06 20:17:39 +0100
committerSverker Eriksson <[email protected]>2019-02-06 20:26:22 +0100
commit3f5c2b86b7dcd1d8b5a2eacad92b659ac9709a53 (patch)
treee4c90968ad38ad1a8c0f117f0c6af579e306e778 /erts/emulator/beam/erl_nif.c
parent3825199794da28d79b21052a2e69e2335921d55e (diff)
downloadotp-3f5c2b86b7dcd1d8b5a2eacad92b659ac9709a53.tar.gz
otp-3f5c2b86b7dcd1d8b5a2eacad92b659ac9709a53.tar.bz2
otp-3f5c2b86b7dcd1d8b5a2eacad92b659ac9709a53.zip
erts: Fix faulty debug assert in enif_select
Diffstat (limited to 'erts/emulator/beam/erl_nif.c')
-rw-r--r--erts/emulator/beam/erl_nif.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_nif.c b/erts/emulator/beam/erl_nif.c
index ee6e6085b6..17041cc91c 100644
--- a/erts/emulator/beam/erl_nif.c
+++ b/erts/emulator/beam/erl_nif.c
@@ -2354,6 +2354,13 @@ static void dtor_demonitor(ErtsMonitor* mon, void* context)
erts_proc_sig_send_demonitor(mon);
}
+#ifdef DEBUG
+int erts_dbg_is_resource_dying(ErtsResource* resource)
+{
+ return resource->monitors && rmon_is_dying(resource->monitors);
+}
+#endif
+
# define NIF_RESOURCE_DTOR &nif_resource_dtor
static int nif_resource_dtor(Binary* bin)