bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#25247: 26.0.50; Concurrency crashes


From: Tino Calancha
Subject: bug#25247: 26.0.50; Concurrency crashes
Date: Fri, 23 Dec 2016 12:34:48 +0900
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)

> When reporting backtraces with threads, please always show the
> backtrace of all the threads in the process.  Like this:
>
>   (gdb) thread apply all bt
OK.  Thanks.

> Looks like the byte stack is unaligned.  In run_thread I see this:
>
>   static void *
>   run_thread (void *state)
>   {
>     char stack_pos;
>     struct thread_state *self = state;
>     struct thread_state **iter;
>
>     self->m_stack_bottom = &stack_pos;
>     self->stack_top = &stack_pos;
>
> which AFAIU could very well produce unaligned pointers.  Does the
> patch below prevent this crash?

Hi Eli.

Your patch solves one of the 2 problems:
After your patch
emacs -Q -l /tmp/test.el
with unmarked
(run-test)
starts the session.

The remaining issue:
while i have some of the threads created by `run-test'
still active, keep using the keyboard might crash the
X lib.




>> (gdb) bt
>> #0  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:58
>> #1  0x00007fffefa9940a in __GI_abort () at abort.c:89
>> #2 0x00007fffefa90e47 in __assert_fail_base (fmt=<optimized out>,
>> assertion=assertion@entry=0x7ffff493fc00
>> "!xcb_xlib_threads_sequence_lost", file=file@entry=0x7ffff493fa6b
>> "../../src/xcb_io.c", line=line@entry=259,
>> function=function@entry=0x7ffff493fea8 "poll_for_event") at
>> assert.c:92
>> #3 0x00007fffefa90ef2 in __GI___assert_fail
>> (assertion=0x7ffff493fc00 "!xcb_xlib_threads_sequence_lost",
>> file=0x7ffff493fa6b "../../src/xcb_io.c", line=259,
>> function=0x7ffff493fea8 "poll_for_event") at assert.c:101
>> #4  0x00007ffff48cd77a in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
>> #5  0x00007ffff48cd82b in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
>> #6  0x00007ffff48cdb1d in _XEventsQueued () from 
>> /usr/lib/x86_64-linux-gnu/libX11.so.6
>> #7  0x00007ffff48af58a in XFlush () from 
>> /usr/lib/x86_64-linux-gnu/libX11.so.6
>> #8  0x0000000000541ff2 in x_flush (f=0x145ac30 <bss_sbrk_buffer+6557264>) at 
>> xterm.c:257
>> #9  0x0000000000543111 in x_flip_and_flush (f=0x145ac30 
>> <bss_sbrk_buffer+6557264>) at xterm.c:1217
>> #10 0x000000000058e269 in flush_frame (f=0x145ac30 
>> <bss_sbrk_buffer+6557264>) at frame.h:1481
>> #11 0x0000000000467d3a in echo_area_display (update_frame_p=true) at 
>> xdisp.c:11435
>> #12 0x0000000000464e43 in message3_nolog (m=...) at xdisp.c:10413
>> #13 0x0000000000464af1 in message3 (m=...) at xdisp.c:10342
>> #14 0x000000000063e868 in Fmessage (nargs=2, args=0x7fff3b015360) at 
>> editfns.c:3767
>
> If you remove the calls to 'message' from the thread function, do
> these problems go away?
Unfortunately not.
If i change test.el as follows:
(that is, without `message' calls)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun mytest ()
  (dotimes (n 10)
    (sleep-for 0.5)))

(defun run-test ()
  (dotimes (_ 50)
    (make-thread #'mytest)))

;; (run-test)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
And then i start session:
emacs -Q -l /tmp/test.el

After some simple keyboard inputs i get another crash
with error:

X protocol error: BadWindow (invalid Window parameter) on protocol request 129
When compiled with GTK, Emacs cannot recover from X disconnects.
This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715
For details, see etc/PROBLEMS.
Fatal error 6: Aborted

And backtraces:

(gdb) thread apply all bt

Thread 54 (Thread 0x7fffbda64700 (LWP 5463)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffbda62c40, 
writefds=0x7fffbda62bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffbda63170, 
wfds=0x7fffbda630f0, efds=0x0, timeout=0x7fffbda630d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffbda62e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffbda62e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffbda63170, wfds=0x7fffbda630f0, efds=0x0, timeout=0x7fffbda630d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1471c50 
<bss_sbrk_buffer+6651504>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1471c30 
<bss_sbrk_buffer+6651472>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffbda64700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 53 (Thread 0x7fffbe2b5700 (LWP 5462)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffbe2b3c40, 
writefds=0x7fffbe2b3bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffbe2b4170, 
wfds=0x7fffbe2b40f0, efds=0x0, timeout=0x7fffbe2b40d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffbe2b3e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffbe2b3e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffbe2b4170, wfds=0x7fffbe2b40f0, efds=0x0, timeout=0x7fffbe2b40d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x31aac20) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x31aac00) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffbe2b5700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 52 (Thread 0x7fffbeb06700 (LWP 5461)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffbeb04c40, 
writefds=0x7fffbeb04bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffbeb05170, 
wfds=0x7fffbeb050f0, efds=0x0, timeout=0x7fffbeb050d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffbeb04e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffbeb04e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffbeb05170, wfds=0x7fffbeb050f0, efds=0x0, timeout=0x7fffbeb050d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x3191cd0) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x3191cb0) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffbeb06700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 51 (Thread 0x7fffbf357700 (LWP 5460)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffbf355c40, 
writefds=0x7fffbf355bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffbf356170, 
wfds=0x7fffbf3560f0, efds=0x0, timeout=0x7fffbf3560d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffbf355e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffbf355e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffbf356170, wfds=0x7fffbf3560f0, efds=0x0, timeout=0x7fffbf3560d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x30eb850) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x30eb830) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffbf357700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 50 (Thread 0x7fffbfba8700 (LWP 5459)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffbfba6c40, 
writefds=0x7fffbfba6bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffbfba7170, 
wfds=0x7fffbfba70f0, efds=0x0, timeout=0x7fffbfba70d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffbfba6e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffbfba6e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffbfba7170, wfds=0x7fffbfba70f0, efds=0x0, timeout=0x7fffbfba70d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x15bcc50 
<bss_sbrk_buffer+8007280>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x15bcc30 
<bss_sbrk_buffer+8007248>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffbfba8700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 49 (Thread 0x7fffc03f9700 (LWP 5458)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc03f7c40, 
writefds=0x7fffc03f7bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc03f8170, 
wfds=0x7fffc03f80f0, efds=0x0, timeout=0x7fffc03f80d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc03f7e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc03f7e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc03f8170, wfds=0x7fffc03f80f0, efds=0x0, timeout=0x7fffc03f80d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x131ec50 
<bss_sbrk_buffer+5262960>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x131ec30 
<bss_sbrk_buffer+5262928>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc03f9700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 48 (Thread 0x7fffc0c4a700 (LWP 5457)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc0c48c40, 
writefds=0x7fffc0c48bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc0c49170, 
wfds=0x7fffc0c490f0, efds=0x0, timeout=0x7fffc0c490d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc0c48e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc0c48e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc0c49170, wfds=0x7fffc0c490f0, efds=0x0, timeout=0x7fffc0c490d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x159bc50 
<bss_sbrk_buffer+7872112>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x159bc30 
<bss_sbrk_buffer+7872080>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc0c4a700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 47 (Thread 0x7fffc149b700 (LWP 5456)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc1499c40, 
writefds=0x7fffc1499bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc149a170, 
wfds=0x7fffc149a0f0, efds=0x0, timeout=0x7fffc149a0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc1499e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc1499e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc149a170, wfds=0x7fffc149a0f0, efds=0x0, timeout=0x7fffc149a0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1599c50 
<bss_sbrk_buffer+7863920>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1599c30 
<bss_sbrk_buffer+7863888>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc149b700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 46 (Thread 0x7fffc1cec700 (LWP 5455)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc1ceac40, 
writefds=0x7fffc1ceabc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc1ceb170, 
wfds=0x7fffc1ceb0f0, efds=0x0, timeout=0x7fffc1ceb0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc1ceae70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc1ceae70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc1ceb170, wfds=0x7fffc1ceb0f0, efds=0x0, timeout=0x7fffc1ceb0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1598c50 
<bss_sbrk_buffer+7859824>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1598c30 
<bss_sbrk_buffer+7859792>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc1cec700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 45 (Thread 0x7fffc253d700 (LWP 5454)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc253bc40, 
writefds=0x7fffc253bbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc253c170, 
wfds=0x7fffc253c0f0, efds=0x0, timeout=0x7fffc253c0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc253be70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc253be70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc253c170, wfds=0x7fffc253c0f0, efds=0x0, timeout=0x7fffc253c0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1597c50 
<bss_sbrk_buffer+7855728>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1597c30 
<bss_sbrk_buffer+7855696>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc253d700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 44 (Thread 0x7fffc2d8e700 (LWP 5453)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc2d8cc40, 
writefds=0x7fffc2d8cbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc2d8d170, 
wfds=0x7fffc2d8d0f0, efds=0x0, timeout=0x7fffc2d8d0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc2d8ce70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc2d8ce70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc2d8d170, wfds=0x7fffc2d8d0f0, efds=0x0, timeout=0x7fffc2d8d0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1596c50 
<bss_sbrk_buffer+7851632>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1596c30 
<bss_sbrk_buffer+7851600>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc2d8e700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 43 (Thread 0x7fffc35df700 (LWP 5452)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc35ddc40, 
writefds=0x7fffc35ddbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc35de170, 
wfds=0x7fffc35de0f0, efds=0x0, timeout=0x7fffc35de0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc35dde70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc35dde70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc35de170, wfds=0x7fffc35de0f0, efds=0x0, timeout=0x7fffc35de0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1595c50 
<bss_sbrk_buffer+7847536>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1595c30 
<bss_sbrk_buffer+7847504>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc35df700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 42 (Thread 0x7fffc3e30700 (LWP 5451)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc3e2ec40, 
writefds=0x7fffc3e2ebc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc3e2f170, 
wfds=0x7fffc3e2f0f0, efds=0x0, timeout=0x7fffc3e2f0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc3e2ee70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc3e2ee70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc3e2f170, wfds=0x7fffc3e2f0f0, efds=0x0, timeout=0x7fffc3e2f0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1594c50 
<bss_sbrk_buffer+7843440>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1594c30 
<bss_sbrk_buffer+7843408>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc3e30700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 41 (Thread 0x7fffc4681700 (LWP 5450)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc467fc40, 
writefds=0x7fffc467fbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc4680170, 
wfds=0x7fffc46800f0, efds=0x0, timeout=0x7fffc46800d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc467fe70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc467fe70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc4680170, wfds=0x7fffc46800f0, efds=0x0, timeout=0x7fffc46800d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1593c50 
<bss_sbrk_buffer+7839344>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1593c30 
<bss_sbrk_buffer+7839312>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc4681700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 40 (Thread 0x7fffc4ed2700 (LWP 5449)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc4ed0c40, 
writefds=0x7fffc4ed0bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc4ed1170, 
wfds=0x7fffc4ed10f0, efds=0x0, timeout=0x7fffc4ed10d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc4ed0e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc4ed0e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc4ed1170, wfds=0x7fffc4ed10f0, efds=0x0, timeout=0x7fffc4ed10d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1592c50 
<bss_sbrk_buffer+7835248>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1592c30 
<bss_sbrk_buffer+7835216>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc4ed2700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 39 (Thread 0x7fffc5723700 (LWP 5448)):
#0  __lll_lock_wait () at ../sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
#1  0x00007ffff0457bc5 in __GI___pthread_mutex_lock (mutex=0xe19da0 
<global_lock>) at ../nptl/pthread_mutex_lock.c:80
#2  0x00000000006e1268 in sys_mutex_lock (mutex=0xe19da0 <global_lock>) at 
systhread.c:113
#3  0x00000000006df7d2 in acquire_global_lock (self=0x1591c30 
<bss_sbrk_buffer+7831120>) at thread.c:100
#4  0x00000000006e033e in really_call_select (arg=0x7fffc5721e70) at 
thread.c:524
#5  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc5721e70) at alloc.c:5137
#6  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc5722170, wfds=0x7fffc57220f0, efds=0x0, timeout=0x7fffc57220d0, 
sigmask=0x0) at thread.c:543
#7  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#8  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#9  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#10 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#11 0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#12 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#13 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#14 0x0000000000648b72 in Flet (args=...) at eval.c:973
#15 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#16 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#17 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#18 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1591c50 
<bss_sbrk_buffer+7831152>) at eval.c:2771
#19 0x00000000006e069f in invoke_thread_function () at thread.c:633
#20 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#21 0x00000000006e07eb in run_thread (state=0x1591c30 
<bss_sbrk_buffer+7831120>) at thread.c:667
#22 0x00007ffff0455464 in start_thread (arg=0x7fffc5723700) at 
pthread_create.c:333
#23 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 38 (Thread 0x7fffc5f74700 (LWP 5447)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc5f72c40, 
writefds=0x7fffc5f72bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc5f73170, 
wfds=0x7fffc5f730f0, efds=0x0, timeout=0x7fffc5f730d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc5f72e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc5f72e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc5f73170, wfds=0x7fffc5f730f0, efds=0x0, timeout=0x7fffc5f730d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1590c50 
<bss_sbrk_buffer+7827056>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1590c30 
<bss_sbrk_buffer+7827024>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc5f74700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 37 (Thread 0x7fffc67c5700 (LWP 5446)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc67c3c40, 
writefds=0x7fffc67c3bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc67c4170, 
wfds=0x7fffc67c40f0, efds=0x0, timeout=0x7fffc67c40d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc67c3e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc67c3e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc67c4170, wfds=0x7fffc67c40f0, efds=0x0, timeout=0x7fffc67c40d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x158fc50 
<bss_sbrk_buffer+7822960>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x158fc30 
<bss_sbrk_buffer+7822928>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc67c5700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 36 (Thread 0x7fffc7016700 (LWP 5445)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc7014c40, 
writefds=0x7fffc7014bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc7015170, 
wfds=0x7fffc70150f0, efds=0x0, timeout=0x7fffc70150d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc7014e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc7014e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc7015170, wfds=0x7fffc70150f0, efds=0x0, timeout=0x7fffc70150d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x158ec50 
<bss_sbrk_buffer+7818864>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x158ec30 
<bss_sbrk_buffer+7818832>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc7016700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 35 (Thread 0x7fffc7867700 (LWP 5444)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc7865c40, 
writefds=0x7fffc7865bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc7866170, 
wfds=0x7fffc78660f0, efds=0x0, timeout=0x7fffc78660d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc7865e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc7865e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc7866170, wfds=0x7fffc78660f0, efds=0x0, timeout=0x7fffc78660d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x158dc50 
<bss_sbrk_buffer+7814768>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x158dc30 
<bss_sbrk_buffer+7814736>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc7867700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 34 (Thread 0x7fffc80b8700 (LWP 5443)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc80b6c40, 
writefds=0x7fffc80b6bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc80b7170, 
wfds=0x7fffc80b70f0, efds=0x0, timeout=0x7fffc80b70d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc80b6e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc80b6e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc80b7170, wfds=0x7fffc80b70f0, efds=0x0, timeout=0x7fffc80b70d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x158cc50 
<bss_sbrk_buffer+7810672>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x158cc30 
<bss_sbrk_buffer+7810640>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc80b8700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 33 (Thread 0x7fffc8909700 (LWP 5442)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc8907c40, 
writefds=0x7fffc8907bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc8908170, 
wfds=0x7fffc89080f0, efds=0x0, timeout=0x7fffc89080d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc8907e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc8907e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc8908170, wfds=0x7fffc89080f0, efds=0x0, timeout=0x7fffc89080d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x158bc50 
<bss_sbrk_buffer+7806576>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x158bc30 
<bss_sbrk_buffer+7806544>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc8909700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 32 (Thread 0x7fffc915a700 (LWP 5441)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc9158c40, 
writefds=0x7fffc9158bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc9159170, 
wfds=0x7fffc91590f0, efds=0x0, timeout=0x7fffc91590d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc9158e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc9158e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc9159170, wfds=0x7fffc91590f0, efds=0x0, timeout=0x7fffc91590d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x158ac50 
<bss_sbrk_buffer+7802480>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x158ac30 
<bss_sbrk_buffer+7802448>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc915a700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 31 (Thread 0x7fffc99ab700 (LWP 5440)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffc99a9c40, 
writefds=0x7fffc99a9bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffc99aa170, 
wfds=0x7fffc99aa0f0, efds=0x0, timeout=0x7fffc99aa0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffc99a9e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffc99a9e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffc99aa170, wfds=0x7fffc99aa0f0, efds=0x0, timeout=0x7fffc99aa0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1589c50 
<bss_sbrk_buffer+7798384>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1589c30 
<bss_sbrk_buffer+7798352>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffc99ab700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 30 (Thread 0x7fffca1fc700 (LWP 5439)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffca1fac40, 
writefds=0x7fffca1fabc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffca1fb170, 
wfds=0x7fffca1fb0f0, efds=0x0, timeout=0x7fffca1fb0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffca1fae70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffca1fae70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffca1fb170, wfds=0x7fffca1fb0f0, efds=0x0, timeout=0x7fffca1fb0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1588c50 
<bss_sbrk_buffer+7794288>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1588c30 
<bss_sbrk_buffer+7794256>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffca1fc700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 29 (Thread 0x7fffcaa4d700 (LWP 5438)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcaa4bc40, 
writefds=0x7fffcaa4bbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcaa4c170, 
wfds=0x7fffcaa4c0f0, efds=0x0, timeout=0x7fffcaa4c0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcaa4be70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcaa4be70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcaa4c170, wfds=0x7fffcaa4c0f0, efds=0x0, timeout=0x7fffcaa4c0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1587c50 
<bss_sbrk_buffer+7790192>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1587c30 
<bss_sbrk_buffer+7790160>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcaa4d700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 28 (Thread 0x7fffcb29e700 (LWP 5437)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcb29cc40, 
writefds=0x7fffcb29cbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcb29d170, 
wfds=0x7fffcb29d0f0, efds=0x0, timeout=0x7fffcb29d0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcb29ce70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcb29ce70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcb29d170, wfds=0x7fffcb29d0f0, efds=0x0, timeout=0x7fffcb29d0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1586c50 
<bss_sbrk_buffer+7786096>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1586c30 
<bss_sbrk_buffer+7786064>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcb29e700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 27 (Thread 0x7fffcbaef700 (LWP 5436)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcbaedc40, 
writefds=0x7fffcbaedbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcbaee170, 
wfds=0x7fffcbaee0f0, efds=0x0, timeout=0x7fffcbaee0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcbaede70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcbaede70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcbaee170, wfds=0x7fffcbaee0f0, efds=0x0, timeout=0x7fffcbaee0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1585c50 
<bss_sbrk_buffer+7782000>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1585c30 
<bss_sbrk_buffer+7781968>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcbaef700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 26 (Thread 0x7fffcc340700 (LWP 5435)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcc33ec40, 
writefds=0x7fffcc33ebc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcc33f170, 
wfds=0x7fffcc33f0f0, efds=0x0, timeout=0x7fffcc33f0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcc33ee70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcc33ee70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcc33f170, wfds=0x7fffcc33f0f0, efds=0x0, timeout=0x7fffcc33f0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1584c50 
<bss_sbrk_buffer+7777904>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1584c30 
<bss_sbrk_buffer+7777872>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcc340700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 25 (Thread 0x7fffccb91700 (LWP 5434)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffccb8fc40, 
writefds=0x7fffccb8fbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffccb90170, 
wfds=0x7fffccb900f0, efds=0x0, timeout=0x7fffccb900d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffccb8fe70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffccb8fe70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffccb90170, wfds=0x7fffccb900f0, efds=0x0, timeout=0x7fffccb900d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1583c50 
<bss_sbrk_buffer+7773808>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1583c30 
<bss_sbrk_buffer+7773776>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffccb91700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 24 (Thread 0x7fffcd3e2700 (LWP 5433)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcd3e0c40, 
writefds=0x7fffcd3e0bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcd3e1170, 
wfds=0x7fffcd3e10f0, efds=0x0, timeout=0x7fffcd3e10d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcd3e0e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcd3e0e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcd3e1170, wfds=0x7fffcd3e10f0, efds=0x0, timeout=0x7fffcd3e10d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1582c50 
<bss_sbrk_buffer+7769712>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1582c30 
<bss_sbrk_buffer+7769680>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcd3e2700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 23 (Thread 0x7fffcdc33700 (LWP 5432)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcdc31c40, 
writefds=0x7fffcdc31bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcdc32170, 
wfds=0x7fffcdc320f0, efds=0x0, timeout=0x7fffcdc320d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcdc31e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcdc31e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcdc32170, wfds=0x7fffcdc320f0, efds=0x0, timeout=0x7fffcdc320d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x147bc50 
<bss_sbrk_buffer+6692464>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x147bc30 
<bss_sbrk_buffer+6692432>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcdc33700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 22 (Thread 0x7fffce484700 (LWP 5431)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffce482c40, 
writefds=0x7fffce482bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffce483170, 
wfds=0x7fffce4830f0, efds=0x0, timeout=0x7fffce4830d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffce482e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffce482e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffce483170, wfds=0x7fffce4830f0, efds=0x0, timeout=0x7fffce4830d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x147ac50 
<bss_sbrk_buffer+6688368>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x147ac30 
<bss_sbrk_buffer+6688336>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffce484700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 21 (Thread 0x7fffcecd5700 (LWP 5430)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcecd3c40, 
writefds=0x7fffcecd3bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcecd4170, 
wfds=0x7fffcecd40f0, efds=0x0, timeout=0x7fffcecd40d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcecd3e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcecd3e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcecd4170, wfds=0x7fffcecd40f0, efds=0x0, timeout=0x7fffcecd40d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1479c50 
<bss_sbrk_buffer+6684272>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1479c30 
<bss_sbrk_buffer+6684240>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcecd5700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 20 (Thread 0x7fffcf526700 (LWP 5429)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcf524c40, 
writefds=0x7fffcf524bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcf525170, 
wfds=0x7fffcf5250f0, efds=0x0, timeout=0x7fffcf5250d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcf524e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcf524e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcf525170, wfds=0x7fffcf5250f0, efds=0x0, timeout=0x7fffcf5250d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1475c50 
<bss_sbrk_buffer+6667888>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1475c30 
<bss_sbrk_buffer+6667856>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcf526700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 19 (Thread 0x7fffcfd77700 (LWP 5428)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffcfd75c40, 
writefds=0x7fffcfd75bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffcfd76170, 
wfds=0x7fffcfd760f0, efds=0x0, timeout=0x7fffcfd760d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffcfd75e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffcfd75e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffcfd76170, wfds=0x7fffcfd760f0, efds=0x0, timeout=0x7fffcfd760d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1474c50 
<bss_sbrk_buffer+6663792>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1474c30 
<bss_sbrk_buffer+6663760>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffcfd77700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 18 (Thread 0x7fffd05c8700 (LWP 5427)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd05c6c40, 
writefds=0x7fffd05c6bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd05c7170, 
wfds=0x7fffd05c70f0, efds=0x0, timeout=0x7fffd05c70d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd05c6e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd05c6e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd05c7170, wfds=0x7fffd05c70f0, efds=0x0, timeout=0x7fffd05c70d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1473c50 
<bss_sbrk_buffer+6659696>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1473c30 
<bss_sbrk_buffer+6659664>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd05c8700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 17 (Thread 0x7fffd0e19700 (LWP 5426)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd0e17c40, 
writefds=0x7fffd0e17bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd0e18170, 
wfds=0x7fffd0e180f0, efds=0x0, timeout=0x7fffd0e180d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd0e17e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd0e17e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd0e18170, wfds=0x7fffd0e180f0, efds=0x0, timeout=0x7fffd0e180d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1472c50 
<bss_sbrk_buffer+6655600>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1472c30 
<bss_sbrk_buffer+6655568>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd0e19700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 16 (Thread 0x7fffd166a700 (LWP 5425)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd1668c40, 
writefds=0x7fffd1668bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd1669170, 
wfds=0x7fffd16690f0, efds=0x0, timeout=0x7fffd16690d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd1668e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd1668e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd1669170, wfds=0x7fffd16690f0, efds=0x0, timeout=0x7fffd16690d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1470c50 
<bss_sbrk_buffer+6647408>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1470c30 
<bss_sbrk_buffer+6647376>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd166a700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 15 (Thread 0x7fffd1ebb700 (LWP 5424)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd1eb9c40, 
writefds=0x7fffd1eb9bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd1eba170, 
wfds=0x7fffd1eba0f0, efds=0x0, timeout=0x7fffd1eba0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd1eb9e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd1eb9e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd1eba170, wfds=0x7fffd1eba0f0, efds=0x0, timeout=0x7fffd1eba0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x146fc50 
<bss_sbrk_buffer+6643312>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x146fc30 
<bss_sbrk_buffer+6643280>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd1ebb700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 14 (Thread 0x7fffd270c700 (LWP 5423)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd270ac40, 
writefds=0x7fffd270abc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd270b170, 
wfds=0x7fffd270b0f0, efds=0x0, timeout=0x7fffd270b0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd270ae70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd270ae70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd270b170, wfds=0x7fffd270b0f0, efds=0x0, timeout=0x7fffd270b0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x3630438) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x3630418) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd270c700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 13 (Thread 0x7fffd2f5d700 (LWP 5422)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd2f5bc40, 
writefds=0x7fffd2f5bbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd2f5c170, 
wfds=0x7fffd2f5c0f0, efds=0x0, timeout=0x7fffd2f5c0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd2f5be70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd2f5be70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd2f5c170, wfds=0x7fffd2f5c0f0, efds=0x0, timeout=0x7fffd2f5c0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x3630308) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x36302e8) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd2f5d700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 12 (Thread 0x7fffd37ae700 (LWP 5421)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd37acc40, 
writefds=0x7fffd37acbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd37ad170, 
wfds=0x7fffd37ad0f0, efds=0x0, timeout=0x7fffd37ad0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd37ace70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd37ace70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd37ad170, wfds=0x7fffd37ad0f0, efds=0x0, timeout=0x7fffd37ad0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x15f3e38 
<bss_sbrk_buffer+8233048>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x15f3e18 
<bss_sbrk_buffer+8233016>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd37ae700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 11 (Thread 0x7fffd3fff700 (LWP 5420)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffd3ffdc40, 
writefds=0x7fffd3ffdbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffd3ffe170, 
wfds=0x7fffd3ffe0f0, efds=0x0, timeout=0x7fffd3ffe0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffd3ffde70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffd3ffde70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffd3ffe170, wfds=0x7fffd3ffe0f0, efds=0x0, timeout=0x7fffd3ffe0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0xe79530 
<bss_sbrk_buffer+390992>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0xe79510 <bss_sbrk_buffer+390960>) 
at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffd3fff700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 10 (Thread 0x7fffdc900700 (LWP 5419)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffdc8fec40, 
writefds=0x7fffdc8febc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffdc8ff170, 
wfds=0x7fffdc8ff0f0, efds=0x0, timeout=0x7fffdc8ff0d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffdc8fee70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffdc8fee70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffdc8ff170, wfds=0x7fffdc8ff0f0, efds=0x0, timeout=0x7fffdc8ff0d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x1631e90 
<bss_sbrk_buffer+8487088>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x1631e70 
<bss_sbrk_buffer+8487056>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffdc900700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 9 (Thread 0x7fffdd151700 (LWP 5418)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffdd14fc40, 
writefds=0x7fffdd14fbc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffdd150170, 
wfds=0x7fffdd1500f0, efds=0x0, timeout=0x7fffdd1500d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffdd14fe70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffdd14fe70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffdd150170, wfds=0x7fffdd1500f0, efds=0x0, timeout=0x7fffdd1500d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x15eeeb0 
<bss_sbrk_buffer+8212688>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x15eee90 
<bss_sbrk_buffer+8212656>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffdd151700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 8 (Thread 0x7fffdd9a2700 (LWP 5417)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffdd9a0c40, 
writefds=0x7fffdd9a0bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffdd9a1170, 
wfds=0x7fffdd9a10f0, efds=0x0, timeout=0x7fffdd9a10d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffdd9a0e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffdd9a0e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffdd9a1170, wfds=0x7fffdd9a10f0, efds=0x0, timeout=0x7fffdd9a10d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x15c7eb8 
<bss_sbrk_buffer+8052952>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x15c7e98 
<bss_sbrk_buffer+8052920>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffdd9a2700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 7 (Thread 0x7fffde1f3700 (LWP 5416)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffde1f1c40, 
writefds=0x7fffde1f1bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffde1f2170, 
wfds=0x7fffde1f20f0, efds=0x0, timeout=0x7fffde1f20d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffde1f1e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffde1f1e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffde1f2170, wfds=0x7fffde1f20f0, efds=0x0, timeout=0x7fffde1f20d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x15c6eb8 
<bss_sbrk_buffer+8048856>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x15c6e98 
<bss_sbrk_buffer+8048824>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffde1f3700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 6 (Thread 0x7fffdea44700 (LWP 5415)):
#0  __lll_lock_wait () at ../sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
#1  0x00007ffff0457bc5 in __GI___pthread_mutex_lock (mutex=0xe19da0 
<global_lock>) at ../nptl/pthread_mutex_lock.c:80
#2  0x00000000006e1268 in sys_mutex_lock (mutex=0xe19da0 <global_lock>) at 
systhread.c:113
#3  0x00000000006df7d2 in acquire_global_lock (self=0x15c5e98 
<bss_sbrk_buffer+8044728>) at thread.c:100
#4  0x00000000006e033e in really_call_select (arg=0x7fffdea42e70) at 
thread.c:524
#5  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffdea42e70) at alloc.c:5137
#6  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffdea43170, wfds=0x7fffdea430f0, efds=0x0, timeout=0x7fffdea430d0, 
sigmask=0x0) at thread.c:543
#7  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#8  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#9  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#10 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#11 0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#12 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#13 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#14 0x0000000000648b72 in Flet (args=...) at eval.c:973
#15 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#16 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#17 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#18 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x15c5eb8 
<bss_sbrk_buffer+8044760>) at eval.c:2771
#19 0x00000000006e069f in invoke_thread_function () at thread.c:633
#20 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#21 0x00000000006e07eb in run_thread (state=0x15c5e98 
<bss_sbrk_buffer+8044728>) at thread.c:667
#22 0x00007ffff0455464 in start_thread (arg=0x7fffdea44700) at 
pthread_create.c:333
#23 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 5 (Thread 0x7fffdf295700 (LWP 5414)):
#0  0x00007fffefb4638c in __pselect (nfds=14, readfds=0x7fffdf293c40, 
writefds=0x7fffdf293bc0, exceptfds=0x0, timeout=<optimized out>, 
sigmask=<optimized out>) at ../sysdeps/unix/sysv/linux/pselect.c:69
#1  0x000000000070fe80 in xg_select (fds_lim=14, rfds=0x7fffdf294170, 
wfds=0x7fffdf2940f0, efds=0x0, timeout=0x7fffdf2940d0, sigmask=0x0) at 
xgselect.c:116
#2  0x00000000006e031a in really_call_select (arg=0x7fffdf293e70) at 
thread.c:520
#3  0x0000000000622e22 in flush_stack_call_func (func=0x6e0289 
<really_call_select>, arg=0x7fffdf293e70) at alloc.c:5137
#4  0x00000000006e03c6 in thread_select (func=0x70f964 <xg_select>, max_fds=14, 
rfds=0x7fffdf294170, wfds=0x7fffdf2940f0, efds=0x0, timeout=0x7fffdf2940d0, 
sigmask=0x0) at thread.c:543
#5  0x00000000006b242e in wait_reading_process_output (time_limit=0, 
nsecs=500000000, read_kbd=0, do_display=false, wait_for_cell=..., 
wait_proc=0x0, just_wait_proc=0) at process.c:5344
#6  0x00000000004282a5 in Fsleep_for (seconds=..., milliseconds=...) at 
dispnew.c:5695
#7  0x000000000064c317 in eval_sub (form=...) at eval.c:2236
#8  0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#9  0x0000000000648c90 in Fwhile (args=...) at eval.c:992
#10 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#11 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#12 0x0000000000648b72 in Flet (args=...) at eval.c:973
#13 0x000000000064bf0e in eval_sub (form=...) at eval.c:2186
#14 0x0000000000646cfe in Fprogn (body=...) at eval.c:450
#15 0x000000000064eb6b in funcall_lambda (fun=..., nargs=0, arg_vector=0x0) at 
eval.c:3028
#16 0x000000000064dbc8 in Ffuncall (nargs=1, args=0x15c4eb8 
<bss_sbrk_buffer+8040664>) at eval.c:2771
#17 0x00000000006e069f in invoke_thread_function () at thread.c:633
#18 0x0000000000649b77 in internal_condition_case (bfun=0x6e0677 
<invoke_thread_function>, handlers=..., hfun=0x6e06be <do_nothing>) at 
eval.c:1336
#19 0x00000000006e07eb in run_thread (state=0x15c4e98 
<bss_sbrk_buffer+8040632>) at thread.c:667
#20 0x00007ffff0455464 in start_thread (arg=0x7fffdf295700) at 
pthread_create.c:333
#21 0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 4 (Thread 0x7fffdffff700 (LWP 5413)):
#0  0x00007fffefb4456d in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x00007ffff503a9f6 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x00007ffff503ab0c in g_main_context_iteration () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x00007fffe408646d in ?? () from 
/usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so
#4  0x00007ffff5062345 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x00007ffff0455464 in start_thread (arg=0x7fffdffff700) at 
pthread_create.c:333
#6  0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 3 (Thread 0x7fffe4adc700 (LWP 5412)):
#0  0x00007fffefb4456d in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x00007ffff503a9f6 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x00007ffff503ad82 in g_main_loop_run () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x00007ffff56224f6 in ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
#4  0x00007ffff5062345 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x00007ffff0455464 in start_thread (arg=0x7fffe4adc700) at 
pthread_create.c:333
#6  0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 2 (Thread 0x7fffe599f700 (LWP 5411)):
#0  0x00007fffefb4456d in poll () at ../sysdeps/unix/syscall-template.S:84
#1  0x00007ffff503a9f6 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x00007ffff503ab0c in g_main_context_iteration () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x00007ffff503ab51 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x00007ffff5062345 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x00007ffff0455464 in start_thread (arg=0x7fffe599f700) at 
pthread_create.c:333
#6  0x00007fffefb4d9df in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:105

Thread 1 (Thread 0x7ffff7f16b00 (LWP 5406)):
#0  raise (sig=6) at ../sysdeps/unix/sysv/linux/raise.c:58
#1  0x000000000058f8d9 in terminate_due_to_signal (sig=6, backtrace_limit=40) 
at emacs.c:396
#2  0x00000000005bded8 in emacs_abort () at sysdep.c:2364
#3  0x0000000000554675 in x_connection_closed (dpy=0x2e77700, 
error_message=0x7fffffff9880 "X protocol error: BadWindow (invalid Window 
parameter) on protocol request 129", ioerror=false) at xterm.c:9582
#4  0x000000000055480d in x_error_quitter (display=0x2e77700, 
event=0x7fffffff9b30) at xterm.c:9670
#5  0x0000000000554767 in x_error_handler (display=0x2e77700, 
event=0x7fffffff9b30) at xterm.c:9640
#6  0x00007ffff48d022d in _XError () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#7  0x00007ffff48cd157 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#8  0x00007ffff48cd215 in ?? () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#9  0x00007ffff48ce128 in _XReply () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#10 0x00007ffff48c9b1d in XSync () from /usr/lib/x86_64-linux-gnu/libX11.so.6
#11 0x00007ffff66fda41 in gdk_window_process_all_updates () from 
/usr/lib/x86_64-linux-gnu/libgdk-3.so.0
#12 0x0000000000564b9e in x_sync (f=0x1459c30 <bss_sbrk_buffer+6553168>) at 
xfns.c:5147
#13 0x000000000057df43 in xg_update_scrollbar_pos (f=0x1459c30 
<bss_sbrk_buffer+6553168>, scrollbar_id=0, top=0, left=2530, width=16, 
height=1088) at gtkutil.c:3785
#14 0x000000000054e0db in XTset_vertical_scroll_bar (w=0x145ac30 
<bss_sbrk_buffer+6557264>, portion=160, whole=160, position=0) at xterm.c:6695
#15 0x0000000000475348 in set_vertical_scroll_bar (w=0x145ac30 
<bss_sbrk_buffer+6557264>) at xdisp.c:16138
#16 0x000000000047ac6a in redisplay_window (window=..., just_this_one_p=false) 
at xdisp.c:17311
#17 0x000000000046e568 in redisplay_window_0 (window=...) at xdisp.c:14554
#18 0x0000000000649c25 in internal_condition_case_1 (bfun=0x46e526 
<redisplay_window_0>, arg=..., handlers=..., hfun=0x46e4ee 
<redisplay_window_error>) at eval.c:1360
#19 0x000000000046e4c3 in redisplay_windows (window=...) at xdisp.c:14534
#20 0x000000000046cf59 in redisplay_internal () at xdisp.c:14023
#21 0x000000000046a893 in redisplay () at xdisp.c:13268
#22 0x00000000005981ee in read_char (commandflag=1, map=..., prev_event=..., 
used_mouse_menu=0x7fffffffe0bf, end_time=0x0) at keyboard.c:2485
#23 0x00000000005a9269 in read_key_sequence (keybuf=0x7fffffffe250, bufsize=30, 
prompt=..., dont_downcase_last=false, can_return_switch_frame=true, 
fix_current_buffer=true, prevent_redisplay=false) at keyboard.c:9139
#24 0x0000000000594bfe in command_loop_1 () at keyboard.c:1373
#25 0x0000000000649b77 in internal_condition_case (bfun=0x5947b2 
<command_loop_1>, handlers=..., hfun=0x593df5 <cmd_error>) at eval.c:1336
#26 0x00000000005943cd in command_loop_2 (ignore=...) at keyboard.c:1115
#27 0x0000000000649080 in internal_catch (tag=..., func=0x5943a0 
<command_loop_2>, arg=...) at eval.c:1101
#28 0x000000000059436b in command_loop () at keyboard.c:1094
#29 0x00000000005938df in recursive_edit_1 () at keyboard.c:700
#30 0x0000000000593ad4 in Frecursive_edit () at keyboard.c:771
#31 0x000000000059163b in main (argc=5, argv=0x7fffffffe728) at emacs.c:1691


I get similar crashes after applying your patch.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]