diff options
| author | Giuseppe Scrivano | 2011-02-17 12:29:17 +0100 |
|---|---|---|
| committer | Giuseppe Scrivano | 2011-02-17 12:29:17 +0100 |
| commit | 38dba5e8d27b7504ac29b7d1f92b3478995204f1 (patch) | |
| tree | 7ee67d85ee40d7438813aed619923532815dd22c /src/thread.h | |
| parent | f17afbf5c25bd0901eb5d9800a07b9e8b7981293 (diff) | |
| download | emacs-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.h | 2 |
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; |