summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-02-05 11:31:20 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-02-05 11:31:20 (GMT)
commit9d8d54a4ee29f98b475347d3bbc925d9a526c352 (patch)
tree79dddbd76017036477d466be1dfe123025c7a3d7 /src
parentd6282c43bcf95e86b90df3088b6a8f53f757da36 (diff)
Fixed the compilation in non debug mode.
Diffstat (limited to 'src')
-rw-r--r--src/arch/processor.c8
-rw-r--r--src/format/format.c8
2 files changed, 12 insertions, 4 deletions
diff --git a/src/arch/processor.c b/src/arch/processor.c
index c08e8da..5c4f864 100644
--- a/src/arch/processor.c
+++ b/src/arch/processor.c
@@ -131,14 +131,14 @@ static void g_arch_processor_class_init(GArchProcessorClass *klass)
static void g_arch_processor_init(GArchProcessor *proc)
{
g_mutex_init(&proc->mutex);
-#ifndef DEBUG
+#ifndef NDEBUG
g_atomic_int_set(&proc->locked, 0);
#endif
proc->errors = NULL;
proc->error_count = 0;
g_mutex_init(&proc->error_mutex);
-#ifndef DEBUG
+#ifndef NDEBUG
g_atomic_int_set(&proc->error_locked, 0);
#endif
@@ -549,11 +549,15 @@ void g_arch_processor_lock_unlock_errors(GArchProcessor *proc, bool state)
if (state)
{
g_mutex_lock(&proc->error_mutex);
+#ifndef NDEBUG
g_atomic_int_set(&proc->error_locked, 1);
+#endif
}
else
{
+#ifndef NDEBUG
g_atomic_int_set(&proc->error_locked, 0);
+#endif
g_mutex_unlock(&proc->error_mutex);
}
diff --git a/src/format/format.c b/src/format/format.c
index 88367f6..89db51d 100644
--- a/src/format/format.c
+++ b/src/format/format.c
@@ -116,14 +116,14 @@ static void g_binary_format_init(GBinFormat *format)
format->info = g_preload_info_new();
g_rw_lock_init(&format->syms_lock);
-#ifndef DEBUG
+#ifndef NDEBUG
g_atomic_int_set(&format->sym_locked, 0);
#endif
format->errors = NULL;
format->error_count = 0;
g_mutex_init(&format->error_mutex);
-#ifndef DEBUG
+#ifndef NDEBUG
g_atomic_int_set(&format->error_locked, 0);
#endif
@@ -1375,11 +1375,15 @@ void g_binary_format_lock_unlock_errors(GBinFormat *format, bool state)
if (state)
{
g_mutex_lock(&format->error_mutex);
+#ifndef NDEBUG
g_atomic_int_set(&format->error_locked, 1);
+#endif
}
else
{
+#ifndef NDEBUG
g_atomic_int_set(&format->error_locked, 0);
+#endif
g_mutex_unlock(&format->error_mutex);
}