From 1ea180459b74165036eea638f61f78e688867eac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 19 Apr 2017 15:34:12 +0200 Subject: Improve C++ compatibility Changes imported from a customer project. --- c_src/nif_helpers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c_src/nif_helpers.c') diff --git a/c_src/nif_helpers.c b/c_src/nif_helpers.c index 0f98cd6..8953f2e 100644 --- a/c_src/nif_helpers.c +++ b/c_src/nif_helpers.c @@ -163,8 +163,8 @@ void* nif_create_main_thread(char* name) { nif_thread_state* st = (nif_thread_state*)enif_alloc(sizeof(nif_thread_state)); - st->lock = enif_mutex_create("esdl2_lock"); - st->cond = enif_cond_create("esdl2_cond"); + st->lock = enif_mutex_create("nif_thread_mailbox_lock"); + st->cond = enif_cond_create("nif_thread_mailbox_cond"); st->mailbox = (nif_thread_mailbox*)enif_alloc(sizeof(nif_thread_mailbox)); TAILQ_INIT(st->mailbox); -- cgit v1.2.3