summaryrefslogtreecommitdiff
path: root/src/thread.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2017-11-24 23:11:55 +0200
committerEli Zaretskii <eliz@gnu.org>2017-11-24 23:11:55 +0200
commit86e6ed8521564105a42ae52851b6bff7e3a12a94 (patch)
tree199f58464d583b106bc2f34906da4b8a6e530b63 /src/thread.c
parentf3008520376a5d0fe3aa13bc5fa7a103e1623055 (diff)
downloademacs-86e6ed8521564105a42ae52851b6bff7e3a12a94.tar.gz
; * src/thread.c (acquire_global_lock): Fix thinko in last change.
Diffstat (limited to 'src/thread.c')
-rw-r--r--src/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.c b/src/thread.c
index 1ded8f55f50..9e799ce47d4 100644
--- a/src/thread.c
+++ b/src/thread.c
@@ -101,7 +101,7 @@ acquire_global_lock (struct thread_state *self)
signal handler could have called maybe_reacquire_global_lock, in
which case we are already holding the lock and shouldn't try
taking it again, or else we will hang forever. */
- if (!(self && self->not_holding_lock))
+ if (!(self && !self->not_holding_lock))
sys_mutex_lock (&global_lock);
post_acquire_global_lock (self);
}