diff options
Diffstat (limited to 'src/thread.c')
| -rw-r--r-- | src/thread.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/thread.c b/src/thread.c index 01d2fd0d6eb..551f3de10e4 100644 --- a/src/thread.c +++ b/src/thread.c | |||
| @@ -852,6 +852,9 @@ It is an error for a thread to try to join itself. */) | |||
| 852 | CHECK_THREAD (thread); | 852 | CHECK_THREAD (thread); |
| 853 | tstate = XTHREAD (thread); | 853 | tstate = XTHREAD (thread); |
| 854 | 854 | ||
| 855 | if (tstate == current_thread) | ||
| 856 | error ("cannot join current thread"); | ||
| 857 | |||
| 855 | if (tstate->m_specpdl != NULL) | 858 | if (tstate->m_specpdl != NULL) |
| 856 | flush_stack_call_func (thread_join_callback, tstate); | 859 | flush_stack_call_func (thread_join_callback, tstate); |
| 857 | 860 | ||