aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.h
diff options
context:
space:
mode:
authorGiuseppe Scrivano2011-02-17 12:29:17 +0100
committerGiuseppe Scrivano2011-02-17 12:29:17 +0100
commit38dba5e8d27b7504ac29b7d1f92b3478995204f1 (patch)
tree7ee67d85ee40d7438813aed619923532815dd22c /src/thread.h
parentf17afbf5c25bd0901eb5d9800a07b9e8b7981293 (diff)
downloademacs-other-branches/old-concurrency.tar.gz
emacs-other-branches/old-concurrency.zip
make the minibuffer mutex recursive.other-branches/old-concurrency
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.h b/src/thread.h
index 8fb0cb8bc20..573d1ecd1da 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -7,7 +7,7 @@ struct Lisp_Mutex
7 struct Lisp_Vector *v_next; 7 struct Lisp_Vector *v_next;
8 8
9 /* Is the mutex recursive? */ 9 /* Is the mutex recursive? */
10 int recursive; 10 Lisp_Object recursive;
11 11
12 /* Thread that owns the mutex. */ 12 /* Thread that owns the mutex. */
13 pthread_t owner; 13 pthread_t owner;