public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* The patch for bugzilla 30387
@ 2023-05-05  2:13 Yan, Zhiyong
  2023-05-08  1:24 ` Yan, Zhiyong
  0 siblings, 1 reply; 4+ messages in thread
From: Yan, Zhiyong @ 2023-05-05  2:13 UTC (permalink / raw)
  To: gdb-patches


[-- Attachment #1.1: Type: text/plain, Size: 1611 bytes --]

Hi,
There is a patch for https://sourceware.org/bugzilla/show_bug.cgi?id=30387, in the attachment.
Bugzilla 30387 has given the steps of producing this issue on arm platform.
Attached step5-assert.txt is a debug log which contains several "gdb step next" output.
For example, at line 29, resume_one_thread() doesn't call process_one_lwp() because  thread LWP 316.316 is pending, as a result the software breaking point is not installed. Later, if this pending thread makes "wait_1: Hit a non-gdbserver trap event." happen, stop_all_lwps() -> "prepare_resume_reply: Writing resume reply for" ->...
In such case, "gdb N" can finish without assert error.
But in step5-assert.txt, from line 14923 to 14943, we can see the pending thread make below happen,
"
wait_for_event_filtered: Got a pending child 316
362.994099   [threads] wait_for_event_filtered: Got an event from pending child 316 (117f)
362.994379   [threads] wait_1: Ignored signal 17 for LWP 316
"
In this case "resume_stopped_resumed_lwps" will resume every 'stopped-resumed' thread, but a thread (previously pending) has no software break point installed, then resume_stopped_resumed_lwps() asserts failed in maybe_hw_step().

      So, my points is:

  1.  Gdb should not assume pending threads always generate "a non-gdbserver trap event", a "Signal 17" event could happen.
  2.  Now that resume_stopped_resumed_lwps() -> may_hw_step() assumes that the break point must already exist, resume_one_thread() should ensure the software breaking point is installed although the thread is pending.

Best Regards.
Zhiyong







[-- Attachment #2: 0001-arm-Install-single-step-software-breakpoing.patch --]
[-- Type: application/octet-stream, Size: 1277 bytes --]

From 8cdb5c170a4f0983d40e98d0cbeb0d50939550db Mon Sep 17 00:00:00 2001
From: Zhiyong Yan <zhiyong.yan@windriver.com>
Date: Tue, 25 Apr 2023 11:35:52 +0800
Subject: [PATCH] arm: Install single-step software breakpoing

If resume_step is requested by GDB,
install single-step breakpoint, although the thread need keep pending.

Upstream-Status: Pending
Signed-off-by: Zhiyong Yan zhiyong.yan@windriver.com
---
 gdbserver/linux-low.cc | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/gdbserver/linux-low.cc b/gdbserver/linux-low.cc
index e6a39202a98..543daf66376 100644
--- a/gdbserver/linux-low.cc
+++ b/gdbserver/linux-low.cc
@@ -4670,8 +4670,16 @@ linux_process_target::resume_one_thread (thread_info *thread,
 
       proceed_one_lwp (thread, NULL);
     }
-  else
-    threads_debug_printf ("leaving LWP %ld stopped", lwpid_of (thread));
+  else{
+	threads_debug_printf ("leaving LWP %ld stopped", lwpid_of (thread));
+	if(thread->last_resume_kind == resume_step){
+	    /*
+	    * If resume_step is required by GDB, install single-step breakpoint.
+	    */
+	    if (supports_software_single_step())
+	       install_software_single_step_breakpoints (lwp);
+	}
+  }
 
   thread->last_status.set_ignore ();
   lwp->resume = NULL;
-- 
2.25.1


[-- Attachment #3: step5-assert.txt --]
[-- Type: text/plain, Size: 1365454 bytes --]

358.273406 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.273581 [threads] handle_serial_event: handling possible serial event
358.274500 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.274635 [threads] handle_serial_event: handling possible serial event
358.274837 [threads] write_memory: Writing 01de to 0x0045b444 in process 316
358.275878 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.275978 [threads] handle_serial_event: handling possible serial event
358.276899 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.276997 [threads] handle_serial_event: handling possible serial event
358.277150 [threads] write_memory: Writing 01de to 0x4e90bb30 in process 316
358.278234 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.278329 [threads] handle_serial_event: handling possible serial event
358.279229 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.279334 [threads] handle_serial_event: handling possible serial event
358.279505 [threads] write_memory: Writing 01de to 0x4e98a7d8 in process 316
358.280249 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.280350 [threads] handle_serial_event: handling possible serial event
358.281051 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.281146 [threads] handle_serial_event: handling possible serial event
358.281313 [threads] write_memory: Writing 01de to 0x4ea6e998 in process 316
358.282044 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.282142 [threads] handle_serial_event: handling possible serial event
358.282443 [threads] resume: enter
358.282735   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
358.282834   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
358.283112   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
358.283204   [threads] resume: Not resuming, all-stop and found an LWP with pending status
358.283305   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
358.283387   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
358.283472   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
358.283546   [threads] resume_one_thread: leaving LWP 316 stopped
358.283621   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
358.283703   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.283787   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
358.283859   [threads] resume_one_thread: leaving LWP 349 stopped
358.283938   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
358.284022   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.284103   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
358.284177   [threads] resume_one_thread: leaving LWP 350 stopped
358.284263   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
358.284345   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.284427   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
358.284500   [threads] resume_one_thread: leaving LWP 351 stopped
358.284575   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
358.284657   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.284752   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
358.284825   [threads] resume_one_thread: leaving LWP 352 stopped
358.284900   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
358.284987   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.285081   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
358.285153   [threads] resume_one_thread: leaving LWP 357 stopped
358.285227   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
358.285308   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.285393   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
358.285465   [threads] resume_one_thread: leaving LWP 358 stopped
358.285540   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
358.285623   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.285706   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
358.285778   [threads] resume_one_thread: leaving LWP 359 stopped
358.285856   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
358.285941   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.286023   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
358.286095   [threads] resume_one_thread: leaving LWP 360 stopped
358.286171   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
358.286251   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.286334   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
358.286406   [threads] resume_one_thread: leaving LWP 361 stopped
358.286482   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
358.286570   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.286664   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
358.286735   [threads] resume_one_thread: leaving LWP 364 stopped
358.286819   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
358.286899   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.286981   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
358.287059   [threads] resume_one_thread: leaving LWP 365 stopped
358.287143   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
358.287233   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.287323   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
358.287405   [threads] resume_one_thread: leaving LWP 366 stopped
358.287491   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
358.287577   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.287671   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
358.287750   [threads] resume_one_thread: leaving LWP 367 stopped
358.287825   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
358.287912   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.287994   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
358.288067   [threads] resume_one_thread: leaving LWP 368 stopped
358.288141   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
358.288222   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.288305   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
358.288377   [threads] resume_one_thread: leaving LWP 369 stopped
358.288452   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
358.288535   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.288617   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
358.288707   [threads] resume_one_thread: leaving LWP 370 stopped
358.288784   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
358.288864   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.288949   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
358.292815   [threads] resume_one_thread: leaving LWP 371 stopped
358.292924   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
358.293012   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.293097   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
358.293171   [threads] resume_one_thread: leaving LWP 372 stopped
358.293246   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
358.293326   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.293410   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
358.293484   [threads] resume_one_thread: leaving LWP 373 stopped
358.293570   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
358.293658   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.293742   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
358.293815   [threads] resume_one_thread: leaving LWP 374 stopped
358.293890   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
358.293971   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.294052   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
358.294124   [threads] resume_one_thread: leaving LWP 375 stopped
358.294200   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
358.294282   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.294379   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
358.294453   [threads] resume_one_thread: leaving LWP 376 stopped
358.294528   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
358.294610   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.294694   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
358.294774   [threads] resume_one_thread: leaving LWP 377 stopped
358.294860   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
358.294941   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.295023   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
358.295102   [threads] resume_one_thread: leaving LWP 378 stopped
358.295186   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
358.295273   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.295362   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
358.295434   [threads] resume_one_thread: leaving LWP 379 stopped
358.295510   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
358.295591   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.295673   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
358.295745   [threads] resume_one_thread: leaving LWP 380 stopped
358.295820   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
358.295901   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.295984   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
358.296061   [threads] resume_one_thread: leaving LWP 381 stopped
358.296145   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
358.296239   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.296323   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
358.296396   [threads] resume_one_thread: leaving LWP 382 stopped
358.296471   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
358.296551   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.296644   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
358.296723   [threads] resume_one_thread: leaving LWP 383 stopped
358.296798   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
358.296884   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.296975   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
358.297048   [threads] resume_one_thread: leaving LWP 384 stopped
358.297123   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
358.297209   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.297302   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
358.297386   [threads] resume_one_thread: leaving LWP 385 stopped
358.297470   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
358.297557   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.297646   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
358.297728   [threads] resume_one_thread: leaving LWP 386 stopped
358.297802   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
358.297888   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.297971   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
358.298042   [threads] resume_one_thread: leaving LWP 387 stopped
358.298117   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
358.298200   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.298283   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
358.298356   [threads] resume_one_thread: leaving LWP 388 stopped
358.298432   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
358.298513   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.298607   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
358.298678   [threads] resume_one_thread: leaving LWP 389 stopped
358.298757   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
358.298837   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.298921   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
358.298994   [threads] resume_one_thread: leaving LWP 390 stopped
358.299076   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
358.299162   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.299254   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
358.299333   [threads] resume_one_thread: leaving LWP 391 stopped
358.299416   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
358.299509   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.299603   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
358.299681   [threads] resume_one_thread: leaving LWP 392 stopped
358.299767   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
358.299848   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.299941   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
358.301008   [threads] resume_one_thread: leaving LWP 393 stopped
358.301120   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
358.301210   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.301309   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
358.301383   [threads] resume_one_thread: leaving LWP 394 stopped
358.301460   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
358.301542   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.301627   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
358.301699   [threads] resume_one_thread: leaving LWP 395 stopped
358.301775   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
358.301855   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.301937   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
358.302018   [threads] resume_one_thread: leaving LWP 396 stopped
358.302093   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
358.302173   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.302257   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
358.302330   [threads] resume_one_thread: leaving LWP 397 stopped
358.302404   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
358.302485   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.302569   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
358.302640   [threads] resume_one_thread: leaving LWP 398 stopped
358.302725   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
358.302809   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.302892   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
358.302966   [threads] resume_one_thread: leaving LWP 399 stopped
358.303040   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
358.303130   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.303212   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
358.303283   [threads] resume_one_thread: leaving LWP 400 stopped
358.303369   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
358.303461   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.303554   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
358.303633   [threads] resume_one_thread: leaving LWP 401 stopped
358.303718   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
358.303797   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.303881   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
358.303953   [threads] resume_one_thread: leaving LWP 403 stopped
358.304031   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
358.304111   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.304195   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
358.304267   [threads] resume_one_thread: leaving LWP 404 stopped
358.304345   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
358.304432   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.304507   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
358.304579   [threads] resume_one_thread: leaving LWP 405 stopped
358.304655   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
358.304737   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.304820   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
358.304892   [threads] resume_one_thread: leaving LWP 406 stopped
358.304967   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
358.305045   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.305135   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
358.305212   [threads] resume_one_thread: leaving LWP 407 stopped
358.305286   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
358.305374   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.305464   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
358.305535   [threads] resume_one_thread: leaving LWP 408 stopped
358.305618   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
358.305705   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.305799   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
358.305878   [threads] resume_one_thread: leaving LWP 409 stopped
358.305962   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
358.306050   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
358.306132   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
358.306211   [threads] resume_one_thread: leaving LWP 410 stopped
358.306294   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
358.306387   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.306471   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
358.306543   [threads] resume_one_thread: leaving LWP 411 stopped
358.306629   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
358.306711   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.306796   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
358.306868   [threads] resume_one_thread: leaving LWP 412 stopped
358.306944   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
358.307026   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.307107   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
358.307185   [threads] resume_one_thread: leaving LWP 414 stopped
358.307259   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
358.307344   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.307430   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
358.307502   [threads] resume_one_thread: leaving LWP 433 stopped
358.307587   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
358.307674   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.307767   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
358.307845   [threads] resume_one_thread: leaving LWP 436 stopped
358.307930   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
358.308006   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.308087   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
358.308167   [threads] resume_one_thread: leaving LWP 437 stopped
358.308242   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
358.308328   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.308418   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
358.308499   [threads] resume_one_thread: leaving LWP 483 stopped
358.308584   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
358.308664   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.308742   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
358.308812   [threads] resume_one_thread: leaving LWP 484 stopped
358.308898   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
358.308985   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.309078   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
358.309157   [threads] resume_one_thread: leaving LWP 493 stopped
358.309232   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
358.309319   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.309408   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
358.309487   [threads] resume_one_thread: leaving LWP 508 stopped
358.309576   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
358.309665   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.309758   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
358.309847   [threads] resume_one_thread: leaving LWP 613 stopped
358.309941   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
358.310095   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.310195   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
358.310286   [threads] resume_one_thread: leaving LWP 624 stopped
358.310367   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
358.310448   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.310533   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
358.310605   [threads] resume_one_thread: leaving LWP 655 stopped
358.310688   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
358.310771   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.310855   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
358.310928   [threads] resume_one_thread: leaving LWP 660 stopped
358.311004   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
358.311087   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.311180   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
358.311253   [threads] resume_one_thread: leaving LWP 661 stopped
358.311341   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
358.311429   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.311513   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
358.311585   [threads] resume_one_thread: leaving LWP 1074 stopped
358.311661   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
358.311750   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.311841   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
358.311919   [threads] resume_one_thread: leaving LWP 1118 stopped
358.312004   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
358.312093   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.312184   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
358.312262   [threads] resume_one_thread: leaving LWP 1293 stopped
358.312347   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 1
358.312428   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
358.312514   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: thread->last_resume_kind 0, line 4717
358.312592   [threads] resume_one_thread: leaving LWP 2999 stopped
358.312678   [threads] operator(): [zyan1]  thread LWP 3015.3015 is going to call resume_one_thread, leave_all_stopped 1
358.312765   [threads] resume_one_thread: [zyan1]  thread LWP 3015.3015: 4624
358.312847 [threads] resume: exit
358.312918 [threads] wait_1: enter
358.312989   [threads] wait_1: [<all threads>]
358.313084   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
358.313185   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
358.313361   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.313488   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.2999, last_resume_kind 0, lp->stop_reason 0
358.313578   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
358.313718   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.313806   [threads] wait_for_event_filtered: Got a pending child 410
358.313888   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
358.314032   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3015.3015.0
358.314127   [threads] wait_1: Hit a non-gdbserver trap event.
358.314317   [threads] stop_all_lwps: enter
358.314387     [threads] stop_all_lwps: stop, except=none
358.314510     [threads] wait_for_sigstop: pulling events
358.314679     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
358.315222     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
358.315654     [threads] operator(): leader_pid=3015, leader_lp!=NULL=1, num_lwps=1, zombie=0
358.315839     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
358.315960     [threads] stop_all_lwps: setting stopping_threads back to !stopping
358.316043   [threads] stop_all_lwps: exit
358.316288   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
358.316396   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
358.316480   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
358.316560   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
358.316642   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
358.316721   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
358.316800   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
358.316880   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
358.316960   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
358.317030   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
358.317110   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
358.317189   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
358.317269   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
358.317371   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
358.317451   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
358.317531   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
358.317612   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
358.317695   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
358.317777   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
358.317858   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
358.317937   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
358.318017   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
358.318100   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
358.318182   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
358.318261   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
358.318346   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
358.318426   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
358.318515   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
358.318604   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
358.318694   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
358.318781   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
358.318861   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
358.318950   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
358.319038   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
358.319125   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
358.319212   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
358.319300   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
358.319388   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
358.319476   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
358.319563   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
358.319650   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
358.319731   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
358.319810   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
358.319890   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
358.319972   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
358.320193   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
358.320286   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
358.320367   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
358.320448   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
358.320531   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
358.320611   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
358.320692   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
358.320780   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
358.320869   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
358.320956   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
358.321043   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
358.321129   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
358.321209   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
358.321293   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
358.321382   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
358.321463   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
358.321545   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
358.321632   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
358.321718   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
358.321806   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
358.321894   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
358.321980   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
358.322066   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
358.322156   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
358.322243   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
358.322331   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
358.322417   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
358.322504   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
358.322585   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
358.322669   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3015 needs to move out of the jump pad... no
358.322948   [threads] wait_1: ret = LWP 316.316, status->kind = STOPPED, sig = GDB_SIGNAL_CHLD
358.323046 [threads] wait_1: exit
358.323188 [threads] prepare_resume_reply: Writing resume reply for LWP 316.316:1
358.324405 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.324517 [threads] handle_serial_event: handling possible serial event
358.325463 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.325560 [threads] handle_serial_event: handling possible serial event
358.326457 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.326550 [threads] handle_serial_event: handling possible serial event
358.327735 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.327830 [threads] handle_serial_event: handling possible serial event
358.328155 [threads] resume: enter
358.328380   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
358.328477   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
358.328813   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.328910   [threads] resume: Not resuming, all-stop and found an LWP with pending status
358.328989   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
358.329073   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.329193   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
358.329276   [threads] resume_one_thread: leaving LWP 316 stopped
358.329354   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
358.329436   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.329520   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
358.329592   [threads] resume_one_thread: leaving LWP 349 stopped
358.329669   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
358.329751   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.329842   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
358.329915   [threads] resume_one_thread: leaving LWP 350 stopped
358.329999   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
358.330163   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.330262   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
358.330344   [threads] resume_one_thread: leaving LWP 351 stopped
358.330420   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
358.330507   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.330599   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
358.330673   [threads] resume_one_thread: leaving LWP 352 stopped
358.330749   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
358.330830   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.330914   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
358.330987   [threads] resume_one_thread: leaving LWP 357 stopped
358.331062   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
358.331142   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.331226   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
358.331309   [threads] resume_one_thread: leaving LWP 358 stopped
358.331391   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
358.331474   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.331557   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
358.331630   [threads] resume_one_thread: leaving LWP 359 stopped
358.331708   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
358.331795   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.331886   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
358.331965   [threads] resume_one_thread: leaving LWP 360 stopped
358.332049   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
358.332128   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.332210   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
358.332288   [threads] resume_one_thread: leaving LWP 361 stopped
358.332364   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
358.332450   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.332543   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
358.332622   [threads] resume_one_thread: leaving LWP 364 stopped
358.332707   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
358.332792   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.332883   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
358.332962   [threads] resume_one_thread: leaving LWP 365 stopped
358.333038   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
358.333118   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.333201   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
358.333273   [threads] resume_one_thread: leaving LWP 366 stopped
358.333348   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
358.333428   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.333512   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
358.333585   [threads] resume_one_thread: leaving LWP 367 stopped
358.333654   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
358.333732   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.333817   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
358.333894   [threads] resume_one_thread: leaving LWP 368 stopped
358.333968   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
358.334047   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.334130   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
358.334203   [threads] resume_one_thread: leaving LWP 369 stopped
358.334278   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
358.334366   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.334449   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
358.334527   [threads] resume_one_thread: leaving LWP 370 stopped
358.334601   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
358.334693   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.334785   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
358.334864   [threads] resume_one_thread: leaving LWP 371 stopped
358.334939   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
358.335018   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.335110   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
358.335189   [threads] resume_one_thread: leaving LWP 372 stopped
358.335272   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
358.335358   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.335448   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
358.335526   [threads] resume_one_thread: leaving LWP 373 stopped
358.335601   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
358.335686   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.335777   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
358.335855   [threads] resume_one_thread: leaving LWP 374 stopped
358.335938   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
358.336029   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.336121   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
358.336199   [threads] resume_one_thread: leaving LWP 375 stopped
358.336273   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
358.336354   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.336437   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
358.336509   [threads] resume_one_thread: leaving LWP 376 stopped
358.336590   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
358.336670   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.336752   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
358.336841   [threads] resume_one_thread: leaving LWP 377 stopped
358.336916   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
358.336997   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.337079   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
358.337166   [threads] resume_one_thread: leaving LWP 378 stopped
358.337235   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
358.337316   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.337410   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
358.337483   [threads] resume_one_thread: leaving LWP 379 stopped
358.337562   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
358.337643   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.337741   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
358.337820   [threads] resume_one_thread: leaving LWP 380 stopped
358.337905   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
358.337990   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.338084   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
358.338165   [threads] resume_one_thread: leaving LWP 381 stopped
358.338251   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
358.338337   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.338428   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
358.338510   [threads] resume_one_thread: leaving LWP 382 stopped
358.338589   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
358.338669   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.338752   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
358.338833   [threads] resume_one_thread: leaving LWP 383 stopped
358.338917   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
358.338996   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.339087   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
358.339165   [threads] resume_one_thread: leaving LWP 384 stopped
358.339248   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
358.339327   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.339418   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
358.339504   [threads] resume_one_thread: leaving LWP 385 stopped
358.339598   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
358.339696   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.339787   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
358.339873   [threads] resume_one_thread: leaving LWP 386 stopped
358.339968   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
358.340175   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.340269   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
358.340342   [threads] resume_one_thread: leaving LWP 387 stopped
358.340436   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
358.340532   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.340611   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
358.340681   [threads] resume_one_thread: leaving LWP 388 stopped
358.340758   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
358.340855   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.340947   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
358.341021   [threads] resume_one_thread: leaving LWP 389 stopped
358.341095   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
358.341175   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.341258   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
358.341336   [threads] resume_one_thread: leaving LWP 390 stopped
358.341423   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
358.341503   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.341588   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
358.341664   [threads] resume_one_thread: leaving LWP 391 stopped
358.341740   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
358.341823   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.341920   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
358.342006   [threads] resume_one_thread: leaving LWP 392 stopped
358.342083   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
358.342164   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.342251   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
358.342324   [threads] resume_one_thread: leaving LWP 393 stopped
358.342401   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
358.342489   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.342581   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
358.342661   [threads] resume_one_thread: leaving LWP 394 stopped
358.342754   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
358.342834   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.342932   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
358.343010   [threads] resume_one_thread: leaving LWP 395 stopped
358.343098   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
358.343191   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.343283   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
358.343356   [threads] resume_one_thread: leaving LWP 396 stopped
358.343449   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
358.343541   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.343634   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
358.343696   [threads] resume_one_thread: leaving LWP 397 stopped
358.343777   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
358.343857   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.343958   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
358.344025   [threads] resume_one_thread: leaving LWP 398 stopped
358.344122   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
358.344200   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.344292   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
358.344382   [threads] resume_one_thread: leaving LWP 399 stopped
358.344475   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
358.344562   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.344660   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
358.344746   [threads] resume_one_thread: leaving LWP 400 stopped
358.344840   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
358.344926   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.345015   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
358.345101   [threads] resume_one_thread: leaving LWP 401 stopped
358.345178   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
358.345260   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.345345   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
358.345422   [threads] resume_one_thread: leaving LWP 403 stopped
358.345491   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
358.345578   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.345661   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
358.345734   [threads] resume_one_thread: leaving LWP 404 stopped
358.345810   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
358.345891   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.345984   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
358.346056   [threads] resume_one_thread: leaving LWP 405 stopped
358.346137   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
358.346218   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.346302   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
358.346380   [threads] resume_one_thread: leaving LWP 406 stopped
358.346454   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
358.346552   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.346645   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
358.346731   [threads] resume_one_thread: leaving LWP 407 stopped
358.346826   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
358.346922   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.347011   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
358.347098   [threads] resume_one_thread: leaving LWP 408 stopped
358.347192   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
358.347287   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.347376   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
358.347462   [threads] resume_one_thread: leaving LWP 409 stopped
358.347556   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
358.347636   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
358.347727   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
358.347813   [threads] resume_one_thread: leaving LWP 410 stopped
358.347908   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
358.347983   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.348071   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
358.348160   [threads] resume_one_thread: leaving LWP 411 stopped
358.348233   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
358.348338   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.348421   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
358.348499   [threads] resume_one_thread: leaving LWP 412 stopped
358.348591   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
358.348686   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.348777   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
358.348862   [threads] resume_one_thread: leaving LWP 414 stopped
358.348956   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
358.349051   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.349133   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
358.349223   [threads] resume_one_thread: leaving LWP 433 stopped
358.349317   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
358.349416   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.349513   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
358.349599   [threads] resume_one_thread: leaving LWP 436 stopped
358.349694   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
358.349775   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.349858   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
358.349930   [threads] resume_one_thread: leaving LWP 437 stopped
358.350089   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
358.350203   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.350289   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
358.350365   [threads] resume_one_thread: leaving LWP 483 stopped
358.350444   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
358.350525   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.350624   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
358.350690   [threads] resume_one_thread: leaving LWP 484 stopped
358.350767   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
358.350847   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.350934   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
358.353655   [threads] resume_one_thread: leaving LWP 493 stopped
358.353894   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
358.354509   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.354759   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
358.355357   [threads] resume_one_thread: leaving LWP 508 stopped
358.355598   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
358.356325   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.356571   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
358.356793   [threads] resume_one_thread: leaving LWP 613 stopped
358.357370   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
358.357766   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.358498   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
358.358729   [threads] resume_one_thread: leaving LWP 624 stopped
358.358954   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
358.359618   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.359858   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
358.360172   [threads] resume_one_thread: leaving LWP 655 stopped
358.360411   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
358.360823   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.361131   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
358.361383   [threads] resume_one_thread: leaving LWP 660 stopped
358.361648   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
358.361930   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.362278   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
358.362528   [threads] resume_one_thread: leaving LWP 661 stopped
358.362796   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
358.363190   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.363476   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
358.363739   [threads] resume_one_thread: leaving LWP 1074 stopped
358.364083   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
358.364359   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.364623   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
358.364892   [threads] resume_one_thread: leaving LWP 1118 stopped
358.365274   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
358.365565   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.365842   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
358.366108   [threads] resume_one_thread: leaving LWP 1293 stopped
358.366357   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 1
358.366631   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
358.366914   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: thread->last_resume_kind 0, line 4717
358.367174   [threads] resume_one_thread: leaving LWP 2999 stopped
358.367423   [threads] operator(): [zyan1]  thread LWP 3015.3015 is going to call resume_one_thread, leave_all_stopped 1
358.367696   [threads] resume_one_thread: [zyan1]  thread LWP 3015.3015: 4624
358.367956 [threads] resume: exit
358.368198 [threads] wait_1: enter
358.368456   [threads] wait_1: [<all threads>]
358.368825   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.369211   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.369729   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.2999, last_resume_kind 0, lp->stop_reason 0
358.370222   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.370505   [threads] wait_for_event_filtered: Got a pending child 410
358.370786   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
358.371126   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3015.3015.0
358.371424   [threads] wait_1: Hit a non-gdbserver trap event.
358.371819   [threads] stop_all_lwps: enter
358.372141     [threads] stop_all_lwps: stop, except=none
358.372450     [threads] wait_for_sigstop: pulling events
358.372807     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
358.373585     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
358.374223     [threads] operator(): leader_pid=3015, leader_lp!=NULL=1, num_lwps=1, zombie=0
358.374620     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
358.374944     [threads] stop_all_lwps: setting stopping_threads back to !stopping
358.375214   [threads] stop_all_lwps: exit
358.375688   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
358.375975   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
358.376432   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
358.376716   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
358.376995   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
358.377268   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
358.377527   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
358.377797   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
358.378069   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
358.378329   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
358.378605   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
358.379439   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
358.379743   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
358.379939   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
358.380276   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
358.380541   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
358.380822   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
358.381307   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
358.381620   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
358.381881   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
358.382156   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
358.382540   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
358.382812   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
358.383089   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
358.383443   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
358.383829   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
358.384105   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
358.384379   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
358.384637   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
358.384913   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
358.385287   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
358.385678   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
358.385959   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
358.386217   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
358.386490   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
358.386759   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
358.387152   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
358.387525   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
358.387783   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
358.388058   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
358.388330   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
358.388602   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
358.388858   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
358.389241   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
358.389514   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
358.389889   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
358.390391   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
358.390661   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
358.390935   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
358.391199   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
358.391711   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
358.391874   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
358.392094   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
358.392179   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
358.392261   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
358.392339   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
358.392540   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
358.392805   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
358.393195   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
358.393538   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
358.393814   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
358.394074   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
358.394408   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
358.394692   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
358.394965   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
358.395240   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
358.395598   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
358.395870   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
358.396132   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
358.396410   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
358.396685   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
358.397115   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
358.397392   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
358.397665   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
358.397938   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3015 needs to move out of the jump pad... no
358.398426   [threads] wait_1: ret = LWP 316.2999, status->kind = STOPPED, sig = GDB_SIGNAL_REALTIME_32
358.398718 [threads] wait_1: exit
358.399044 [threads] prepare_resume_reply: Writing resume reply for LWP 316.2999:1
358.400876 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.401450 [threads] handle_serial_event: handling possible serial event
358.402526 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.402785 [threads] handle_serial_event: handling possible serial event
358.403964 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.404218 [threads] handle_serial_event: handling possible serial event
358.405485 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.405759 [threads] handle_serial_event: handling possible serial event
358.406402 [threads] resume: enter
358.406790   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
358.407043   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
358.407528   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.407771   [threads] resume: Not resuming, all-stop and found an LWP with pending status
358.408007   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
358.408243   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.408484   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
358.408711   [threads] resume_one_thread: leaving LWP 316 stopped
358.408942   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
358.409177   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.409418   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
358.409649   [threads] resume_one_thread: leaving LWP 349 stopped
358.409879   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
358.410218   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.410478   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
358.410800   [threads] resume_one_thread: leaving LWP 350 stopped
358.411077   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
358.411383   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.411657   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
358.411905   [threads] resume_one_thread: leaving LWP 351 stopped
358.412177   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
358.412448   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.412898   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
358.413186   [threads] resume_one_thread: leaving LWP 352 stopped
358.413453   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
358.413710   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.414059   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
358.414497   [threads] resume_one_thread: leaving LWP 357 stopped
358.414734   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
358.415012   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.415358   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
358.415624   [threads] resume_one_thread: leaving LWP 358 stopped
358.416011   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
358.416440   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.416710   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
358.416976   [threads] resume_one_thread: leaving LWP 359 stopped
358.417238   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
358.417516   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.417885   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
358.418137   [threads] resume_one_thread: leaving LWP 360 stopped
358.418406   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
358.418685   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.418960   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
358.419208   [threads] resume_one_thread: leaving LWP 361 stopped
358.419653   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
358.420103   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.420377   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
358.420630   [threads] resume_one_thread: leaving LWP 364 stopped
358.420982   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
358.421376   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.421662   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
358.421912   [threads] resume_one_thread: leaving LWP 365 stopped
358.422287   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
358.422667   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.422951   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
358.423212   [threads] resume_one_thread: leaving LWP 366 stopped
358.423461   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
358.423819   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.424156   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
358.424408   [threads] resume_one_thread: leaving LWP 367 stopped
358.424675   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
358.424948   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.425358   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
358.425683   [threads] resume_one_thread: leaving LWP 368 stopped
358.425954   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
358.426230   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.426590   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
358.426863   [threads] resume_one_thread: leaving LWP 369 stopped
358.427130   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
358.427386   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.427896   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
358.428167   [threads] resume_one_thread: leaving LWP 370 stopped
358.428419   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
358.428694   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.428976   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
358.429223   [threads] resume_one_thread: leaving LWP 371 stopped
358.429488   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
358.429762   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.430100   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
358.430358   [threads] resume_one_thread: leaving LWP 372 stopped
358.430624   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
358.430906   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.431165   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
358.431431   [threads] resume_one_thread: leaving LWP 373 stopped
358.431887   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
358.432173   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.432452   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
358.432801   [threads] resume_one_thread: leaving LWP 374 stopped
358.433181   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
358.433447   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.433724   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
358.433982   [threads] resume_one_thread: leaving LWP 375 stopped
358.434458   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
358.434755   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.435037   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
358.435288   [threads] resume_one_thread: leaving LWP 376 stopped
358.435674   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
358.435947   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.436227   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
358.436588   [threads] resume_one_thread: leaving LWP 377 stopped
358.436926   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
358.437206   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.437469   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
358.437792   [threads] resume_one_thread: leaving LWP 378 stopped
358.438155   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
358.438432   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.438710   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
358.439145   [threads] resume_one_thread: leaving LWP 379 stopped
358.439430   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
358.439810   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.440153   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
358.440409   [threads] resume_one_thread: leaving LWP 380 stopped
358.440678   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
358.440950   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.441225   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
358.441474   [threads] resume_one_thread: leaving LWP 381 stopped
358.441739   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
358.441999   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.442273   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
358.442541   [threads] resume_one_thread: leaving LWP 382 stopped
358.442789   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
358.443059   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.443352   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
358.443601   [threads] resume_one_thread: leaving LWP 383 stopped
358.443864   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
358.444137   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.444400   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
358.444666   [threads] resume_one_thread: leaving LWP 384 stopped
358.444930   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
358.445190   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.445464   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
358.445727   [threads] resume_one_thread: leaving LWP 385 stopped
358.445993   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
358.446252   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.446530   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
358.446795   [threads] resume_one_thread: leaving LWP 386 stopped
358.447042   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
358.447313   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.447588   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
358.447853   [threads] resume_one_thread: leaving LWP 387 stopped
358.448104   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
358.448546   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.448832   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
358.449093   [threads] resume_one_thread: leaving LWP 388 stopped
358.449343   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
358.449683   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.449968   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
358.450284   [threads] resume_one_thread: leaving LWP 389 stopped
358.450542   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
358.450824   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.451101   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
358.451348   [threads] resume_one_thread: leaving LWP 390 stopped
358.451849   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
358.452136   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.452500   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
358.452757   [threads] resume_one_thread: leaving LWP 391 stopped
358.453030   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
358.453319   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.453581   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
358.453838   [threads] resume_one_thread: leaving LWP 392 stopped
358.454091   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
358.454472   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.454738   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
358.455138   [threads] resume_one_thread: leaving LWP 393 stopped
358.455404   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
358.455664   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.455941   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
358.456407   [threads] resume_one_thread: leaving LWP 394 stopped
358.456661   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
358.456942   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.457292   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
358.457570   [threads] resume_one_thread: leaving LWP 395 stopped
358.457835   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
358.458094   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.458507   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
358.458766   [threads] resume_one_thread: leaving LWP 396 stopped
358.459014   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
358.459289   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.459565   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
358.459811   [threads] resume_one_thread: leaving LWP 397 stopped
358.460114   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
358.460356   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.460588   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
358.460816   [threads] resume_one_thread: leaving LWP 398 stopped
358.461038   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
358.461265   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.461501   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
358.461912   [threads] resume_one_thread: leaving LWP 399 stopped
358.462140   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
358.462379   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.462614   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
358.462832   [threads] resume_one_thread: leaving LWP 400 stopped
358.463052   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
358.463283   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.463516   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
358.463739   [threads] resume_one_thread: leaving LWP 401 stopped
358.463961   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
358.464191   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.464435   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
358.464707   [threads] resume_one_thread: leaving LWP 403 stopped
358.464944   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
358.465340   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.465630   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
358.465895   [threads] resume_one_thread: leaving LWP 404 stopped
358.466149   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
358.466423   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.466702   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
358.466963   [threads] resume_one_thread: leaving LWP 405 stopped
358.467213   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
358.467501   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.467766   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
358.468032   [threads] resume_one_thread: leaving LWP 406 stopped
358.468383   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
358.468666   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.468946   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
358.469190   [threads] resume_one_thread: leaving LWP 407 stopped
358.469602   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
358.469883   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.470522   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
358.470778   [threads] resume_one_thread: leaving LWP 408 stopped
358.471047   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
358.471323   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.471696   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
358.472047   [threads] resume_one_thread: leaving LWP 409 stopped
358.472307   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
358.472583   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
358.472953   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
358.473222   [threads] resume_one_thread: leaving LWP 410 stopped
358.473476   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
358.473750   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.474071   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
358.474454   [threads] resume_one_thread: leaving LWP 411 stopped
358.474706   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
358.474982   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.475255   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
358.475669   [threads] resume_one_thread: leaving LWP 412 stopped
358.475939   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
358.476281   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.476578   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
358.476828   [threads] resume_one_thread: leaving LWP 414 stopped
358.477095   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
358.477354   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.477707   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
358.478074   [threads] resume_one_thread: leaving LWP 433 stopped
358.478332   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
358.478606   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.478886   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
358.479147   [threads] resume_one_thread: leaving LWP 436 stopped
358.479597   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
358.479878   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.480191   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
358.480536   [threads] resume_one_thread: leaving LWP 437 stopped
358.480940   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
358.481225   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.481492   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
358.481880   [threads] resume_one_thread: leaving LWP 483 stopped
358.482238   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
358.482517   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.482794   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
358.483038   [threads] resume_one_thread: leaving LWP 484 stopped
358.483374   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
358.483654   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.483932   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
358.484178   [threads] resume_one_thread: leaving LWP 493 stopped
358.484549   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
358.484931   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.485211   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
358.485477   [threads] resume_one_thread: leaving LWP 508 stopped
358.485808   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
358.486193   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.486463   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
358.486800   [threads] resume_one_thread: leaving LWP 613 stopped
358.487055   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
358.487331   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.487614   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
358.487939   [threads] resume_one_thread: leaving LWP 624 stopped
358.488304   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
358.488581   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.488845   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
358.489107   [threads] resume_one_thread: leaving LWP 655 stopped
358.489372   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
358.489718   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.489979   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
358.490288   [threads] resume_one_thread: leaving LWP 660 stopped
358.490554   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
358.490818   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.491092   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
358.491356   [threads] resume_one_thread: leaving LWP 661 stopped
358.491605   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
358.491880   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.492157   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
358.492403   [threads] resume_one_thread: leaving LWP 1074 stopped
358.492669   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
358.492945   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.493223   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
358.493691   [threads] resume_one_thread: leaving LWP 1118 stopped
358.493974   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
358.494232   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.494586   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
358.494844   [threads] resume_one_thread: leaving LWP 1293 stopped
358.495305   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 1
358.495596   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
358.496061   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: thread->last_resume_kind 0, line 4717
358.496346   [threads] resume_one_thread: leaving LWP 2999 stopped
358.496617   [threads] operator(): [zyan1]  thread LWP 3015.3015 is going to call resume_one_thread, leave_all_stopped 1
358.496891   [threads] resume_one_thread: [zyan1]  thread LWP 3015.3015: 4624
358.497255 [threads] resume: exit
358.497517 [threads] wait_1: enter
358.497965   [threads] wait_1: [<all threads>]
358.498441   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.498908   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.499329   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.499707   [threads] wait_for_event_filtered: Got a pending child 410
358.500111   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
358.500470   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3015.3015.0
358.500874   [threads] wait_1: Hit a non-gdbserver trap event.
358.501305   [threads] stop_all_lwps: enter
358.501552     [threads] stop_all_lwps: stop, except=none
358.501981     [threads] wait_for_sigstop: pulling events
358.502374     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
358.503116     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
358.503748     [threads] operator(): leader_pid=3015, leader_lp!=NULL=1, num_lwps=1, zombie=0
358.504134     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
358.504471     [threads] stop_all_lwps: setting stopping_threads back to !stopping
358.504756   [threads] stop_all_lwps: exit
358.505213   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
358.505513   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
358.506033   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
358.506320   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
358.506598   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
358.507031   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
358.507297   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
358.507565   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
358.507840   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
358.508307   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
358.508579   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
358.508855   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
358.509124   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
358.509460   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
358.509725   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
358.509997   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
358.510335   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
358.510690   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
358.510969   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
358.511243   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
358.511612   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
358.512051   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
358.512336   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
358.512734   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
358.513017   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
358.513296   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
358.513553   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
358.513833   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
358.514104   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
358.514379   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
358.514630   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
358.514866   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
358.515099   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
358.515336   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
358.515565   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
358.515796   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
358.516026   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
358.516254   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
358.516481   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
358.516710   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
358.516942   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
358.517172   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
358.517401   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
358.517631   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
358.517860   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
358.518094   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
358.518325   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
358.518559   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
358.518788   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
358.519077   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
358.519316   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
358.519604   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
358.519985   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
358.520593   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
358.520889   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
358.521174   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
358.521452   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
358.521852   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
358.522123   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
358.522628   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
358.522908   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
358.523173   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
358.523448   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
358.523824   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
358.524101   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
358.524381   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
358.524652   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
358.524909   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
358.525180   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
358.525460   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
358.525714   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
358.525989   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
358.526433   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
358.526715   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
358.527105   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3015 needs to move out of the jump pad... no
358.527723   [threads] wait_1: ret = LWP 316.410, status->kind = VFORKED, child_ptid = 3015.3015.0
358.527980 [threads] wait_1: exit
358.528408 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:5
358.530067 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.530460 [threads] handle_serial_event: handling possible serial event
358.530892 [threads] write_memory: Writing 0023 to 0x0045b444 in process 316
358.532112 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.532368 [threads] handle_serial_event: handling possible serial event
358.532866 [threads] write_memory: Writing 7047 to 0x4e90bb30 in process 316
358.534079 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.534331 [threads] handle_serial_event: handling possible serial event
358.534719 [threads] write_memory: Writing 38b5 to 0x4e98a7d8 in process 316
358.535877 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.536250 [threads] handle_serial_event: handling possible serial event
358.536624 [threads] write_memory: Writing 08b5 to 0x4ea6e998 in process 316
358.537836 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.538094 [threads] handle_serial_event: handling possible serial event
Detaching from process 3015
358.538572 [threads] stop_tracing: Tracing is already off, ignoring
358.538874 [threads] stop_all_lwps: enter
358.539242   [threads] stop_all_lwps: stop, except=none
358.539565   [threads] wait_for_sigstop: pulling events
358.540112   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
358.541017   [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
358.541801   [threads] operator(): leader_pid=3015, leader_lp!=NULL=1, num_lwps=1, zombie=0
358.542188   [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
358.542515   [threads] stop_all_lwps: setting stopping_threads back to !stopping
358.542787 [threads] stop_all_lwps: exit
358.543098 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
358.543386 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
358.543646 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
358.543916 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
358.544192 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
358.544621 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
358.544920 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
358.545198 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
358.545458 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
358.545804 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
358.546231 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
358.546508 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
358.546766 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
358.547238 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
358.547527 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
358.547885 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
358.548166 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
358.548444 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
358.548720 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
358.549132 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
358.549441 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
358.549707 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
358.549982 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
358.550335 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
358.550600 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
358.550875 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
358.551144 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
358.551401 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
358.551676 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
358.551951 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
358.552218 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
358.552475 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
358.552755 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
358.553027 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
358.553300 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
358.553559 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
358.553831 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
358.554154 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
358.554432 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
358.554711 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
358.554979 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
358.555237 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
358.555508 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
358.555782 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
358.556052 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
358.556308 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
358.556654 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
358.556919 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
358.557175 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
358.557449 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
358.557790 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
358.558177 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
358.558435 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
358.558708 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
358.559056 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
358.559419 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
358.559693 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
358.559953 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
358.560604 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
358.560960 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
358.561241 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
358.561500 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
358.561777 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
358.562175 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
358.562510 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
358.562773 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
358.563050 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
358.563322 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
358.563664 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
358.563926 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
358.564207 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
358.564625 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
358.564891 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
358.565265 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
358.565633 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
358.565916 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3015 needs to move out of the jump pad... no
358.567113 [threads] detach_one_lwp: PTRACE_DETACH (LWP 3015.3015, Unknown signal 0, 0) (OK)
358.567416 [threads] delete_lwp: deleting 3015
358.568027 [threads] unstop_all_lwps: enter
358.568479   [threads] unstop_all_lwps: except=nullptr
358.568761   [threads] proceed_one_lwp: lwp 316
358.569020   [threads] proceed_one_lwp:    client wants LWP to remain 316 stopped
358.569298   [threads] proceed_one_lwp: lwp 349
358.569538   [threads] proceed_one_lwp:    client wants LWP to remain 349 stopped
358.569759   [threads] proceed_one_lwp: lwp 350
358.570106   [threads] proceed_one_lwp:    client wants LWP to remain 350 stopped
358.570420   [threads] proceed_one_lwp: lwp 351
358.570648   [threads] proceed_one_lwp:    client wants LWP to remain 351 stopped
358.570877   [threads] proceed_one_lwp: lwp 352
358.571101   [threads] proceed_one_lwp:    client wants LWP to remain 352 stopped
358.571327   [threads] proceed_one_lwp: lwp 357
358.571549   [threads] proceed_one_lwp:    client wants LWP to remain 357 stopped
358.571776   [threads] proceed_one_lwp: lwp 358
358.571992   [threads] proceed_one_lwp:    client wants LWP to remain 358 stopped
358.572213   [threads] proceed_one_lwp: lwp 359
358.572440   [threads] proceed_one_lwp:    client wants LWP to remain 359 stopped
358.572810   [threads] proceed_one_lwp: lwp 360
358.573141   [threads] proceed_one_lwp:    client wants LWP to remain 360 stopped
358.573469   [threads] proceed_one_lwp: lwp 361
358.573701   [threads] proceed_one_lwp:    client wants LWP to remain 361 stopped
358.574024   [threads] proceed_one_lwp: lwp 364
358.574354   [threads] proceed_one_lwp:    client wants LWP to remain 364 stopped
358.574674   [threads] proceed_one_lwp: lwp 365
358.574909   [threads] proceed_one_lwp:    client wants LWP to remain 365 stopped
358.575177   [threads] proceed_one_lwp: lwp 366
358.575403   [threads] proceed_one_lwp:    client wants LWP to remain 366 stopped
358.575650   [threads] proceed_one_lwp: lwp 367
358.575880   [threads] proceed_one_lwp:    client wants LWP to remain 367 stopped
358.576121   [threads] proceed_one_lwp: lwp 368
358.576392   [threads] proceed_one_lwp:    client wants LWP to remain 368 stopped
358.576633   [threads] proceed_one_lwp: lwp 369
358.576858   [threads] proceed_one_lwp:    client wants LWP to remain 369 stopped
358.577077   [threads] proceed_one_lwp: lwp 370
358.577299   [threads] proceed_one_lwp:    client wants LWP to remain 370 stopped
358.577527   [threads] proceed_one_lwp: lwp 371
358.577760   [threads] proceed_one_lwp:    client wants LWP to remain 371 stopped
358.577985   [threads] proceed_one_lwp: lwp 372
358.578220   [threads] proceed_one_lwp:    client wants LWP to remain 372 stopped
358.578474   [threads] proceed_one_lwp: lwp 373
358.578709   [threads] proceed_one_lwp:    client wants LWP to remain 373 stopped
358.578968   [threads] proceed_one_lwp: lwp 374
358.579204   [threads] proceed_one_lwp:    client wants LWP to remain 374 stopped
358.579428   [threads] proceed_one_lwp: lwp 375
358.579848   [threads] proceed_one_lwp:    client wants LWP to remain 375 stopped
358.580159   [threads] proceed_one_lwp: lwp 376
358.580380   [threads] proceed_one_lwp:    client wants LWP to remain 376 stopped
358.580601   [threads] proceed_one_lwp: lwp 377
358.580818   [threads] proceed_one_lwp:    client wants LWP to remain 377 stopped
358.581038   [threads] proceed_one_lwp: lwp 378
358.581252   [threads] proceed_one_lwp:    client wants LWP to remain 378 stopped
358.581474   [threads] proceed_one_lwp: lwp 379
358.581690   [threads] proceed_one_lwp:    client wants LWP to remain 379 stopped
358.581912   [threads] proceed_one_lwp: lwp 380
358.582133   [threads] proceed_one_lwp:    client wants LWP to remain 380 stopped
358.582358   [threads] proceed_one_lwp: lwp 381
358.582577   [threads] proceed_one_lwp:    client wants LWP to remain 381 stopped
358.582804   [threads] proceed_one_lwp: lwp 382
358.583025   [threads] proceed_one_lwp:    client wants LWP to remain 382 stopped
358.583249   [threads] proceed_one_lwp: lwp 383
358.583461   [threads] proceed_one_lwp:    client wants LWP to remain 383 stopped
358.583649   [threads] proceed_one_lwp: lwp 384
358.583722   [threads] proceed_one_lwp:    client wants LWP to remain 384 stopped
358.583790   [threads] proceed_one_lwp: lwp 385
358.583856   [threads] proceed_one_lwp:    client wants LWP to remain 385 stopped
358.583924   [threads] proceed_one_lwp: lwp 386
358.583993   [threads] proceed_one_lwp:    client wants LWP to remain 386 stopped
358.584060   [threads] proceed_one_lwp: lwp 387
358.584125   [threads] proceed_one_lwp:    client wants LWP to remain 387 stopped
358.584197   [threads] proceed_one_lwp: lwp 388
358.584263   [threads] proceed_one_lwp:    client wants LWP to remain 388 stopped
358.584330   [threads] proceed_one_lwp: lwp 389
358.584396   [threads] proceed_one_lwp:    client wants LWP to remain 389 stopped
358.584462   [threads] proceed_one_lwp: lwp 390
358.584526   [threads] proceed_one_lwp:    client wants LWP to remain 390 stopped
358.584591   [threads] proceed_one_lwp: lwp 391
358.584655   [threads] proceed_one_lwp:    client wants LWP to remain 391 stopped
358.584721   [threads] proceed_one_lwp: lwp 392
358.584784   [threads] proceed_one_lwp:    client wants LWP to remain 392 stopped
358.584848   [threads] proceed_one_lwp: lwp 393
358.584911   [threads] proceed_one_lwp:    client wants LWP to remain 393 stopped
358.584976   [threads] proceed_one_lwp: lwp 394
358.585043   [threads] proceed_one_lwp:    client wants LWP to remain 394 stopped
358.585109   [threads] proceed_one_lwp: lwp 395
358.585175   [threads] proceed_one_lwp:    client wants LWP to remain 395 stopped
358.585241   [threads] proceed_one_lwp: lwp 396
358.585304   [threads] proceed_one_lwp:    client wants LWP to remain 396 stopped
358.585369   [threads] proceed_one_lwp: lwp 397
358.585545   [threads] proceed_one_lwp:    client wants LWP to remain 397 stopped
358.585761   [threads] proceed_one_lwp: lwp 398
358.586010   [threads] proceed_one_lwp:    client wants LWP to remain 398 stopped
358.586315   [threads] proceed_one_lwp: lwp 399
358.586595   [threads] proceed_one_lwp:    client wants LWP to remain 399 stopped
358.587000   [threads] proceed_one_lwp: lwp 400
358.587282   [threads] proceed_one_lwp:    client wants LWP to remain 400 stopped
358.587606   [threads] proceed_one_lwp: lwp 401
358.587954   [threads] proceed_one_lwp:    client wants LWP to remain 401 stopped
358.588266   [threads] proceed_one_lwp: lwp 403
358.588592   [threads] proceed_one_lwp:    client wants LWP to remain 403 stopped
358.588895   [threads] proceed_one_lwp: lwp 404
358.589130   [threads] proceed_one_lwp:    client wants LWP to remain 404 stopped
358.589435   [threads] proceed_one_lwp: lwp 405
358.589706   [threads] proceed_one_lwp:    client wants LWP to remain 405 stopped
358.589960   [threads] proceed_one_lwp: lwp 406
358.590260   [threads] proceed_one_lwp:    client wants LWP to remain 406 stopped
358.590523   [threads] proceed_one_lwp: lwp 407
358.590769   [threads] proceed_one_lwp:    client wants LWP to remain 407 stopped
358.591019   [threads] proceed_one_lwp: lwp 408
358.591243   [threads] proceed_one_lwp:    client wants LWP to remain 408 stopped
358.591487   [threads] proceed_one_lwp: lwp 409
358.591720   [threads] proceed_one_lwp:    client wants LWP to remain 409 stopped
358.591959   [threads] proceed_one_lwp: lwp 410
358.592180   [threads] proceed_one_lwp:    client wants LWP to remain 410 stopped
358.592430   [threads] proceed_one_lwp: lwp 411
358.592671   [threads] proceed_one_lwp:    client wants LWP to remain 411 stopped
358.592983   [threads] proceed_one_lwp: lwp 412
358.593216   [threads] proceed_one_lwp:    client wants LWP to remain 412 stopped
358.600452   [threads] proceed_one_lwp: lwp 414
358.600727   [threads] proceed_one_lwp:    client wants LWP to remain 414 stopped
358.601046   [threads] proceed_one_lwp: lwp 433
358.610319   [threads] proceed_one_lwp:    client wants LWP to remain 433 stopped
358.610615   [threads] proceed_one_lwp: lwp 436
358.610922   [threads] proceed_one_lwp:    client wants LWP to remain 436 stopped
358.611176   [threads] proceed_one_lwp: lwp 437
358.611439   [threads] proceed_one_lwp:    client wants LWP to remain 437 stopped
358.611688   [threads] proceed_one_lwp: lwp 483
358.611943   [threads] proceed_one_lwp:    client wants LWP to remain 483 stopped
358.612202   [threads] proceed_one_lwp: lwp 484
358.612447   [threads] proceed_one_lwp:    client wants LWP to remain 484 stopped
358.612710   [threads] proceed_one_lwp: lwp 493
358.613155   [threads] proceed_one_lwp:    client wants LWP to remain 493 stopped
358.613403   [threads] proceed_one_lwp: lwp 508
358.613625   [threads] proceed_one_lwp:    client wants LWP to remain 508 stopped
358.613848   [threads] proceed_one_lwp: lwp 613
358.614312   [threads] proceed_one_lwp:    client wants LWP to remain 613 stopped
358.614618   [threads] proceed_one_lwp: lwp 624
358.614956   [threads] proceed_one_lwp:    client wants LWP to remain 624 stopped
358.619724   [threads] proceed_one_lwp: lwp 655
358.620125   [threads] proceed_one_lwp:    client wants LWP to remain 655 stopped
358.620371   [threads] proceed_one_lwp: lwp 660
358.620587   [threads] proceed_one_lwp:    client wants LWP to remain 660 stopped
358.620811   [threads] proceed_one_lwp: lwp 661
358.621024   [threads] proceed_one_lwp:    client wants LWP to remain 661 stopped
358.621240   [threads] proceed_one_lwp: lwp 1074
358.621453   [threads] proceed_one_lwp:    client wants LWP to remain 1074 stopped
358.621671   [threads] proceed_one_lwp: lwp 1118
358.621884   [threads] proceed_one_lwp:    client wants LWP to remain 1118 stopped
358.622101   [threads] proceed_one_lwp: lwp 1293
358.622313   [threads] proceed_one_lwp:    client wants LWP to remain 1293 stopped
358.622530   [threads] proceed_one_lwp: lwp 2999
358.622741   [threads] proceed_one_lwp:    client wants LWP to remain 2999 stopped
358.622963 [threads] unstop_all_lwps: exit
358.624434 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.626043 [threads] handle_serial_event: handling possible serial event
358.627098 [threads] resume: enter
358.628096   [threads] thread_needs_step_over: Need step over [LWP 316]? Ignoring, should remain stopped
358.629150   [threads] thread_needs_step_over: Need step over [LWP 349]? Ignoring, should remain stopped
358.629769   [threads] thread_needs_step_over: Need step over [LWP 350]? Ignoring, should remain stopped
358.630100   [threads] thread_needs_step_over: Need step over [LWP 351]? Ignoring, should remain stopped
358.630752   [threads] thread_needs_step_over: Need step over [LWP 352]? Ignoring, should remain stopped
358.631332   [threads] thread_needs_step_over: Need step over [LWP 357]? Ignoring, should remain stopped
358.631603   [threads] thread_needs_step_over: Need step over [LWP 358]? Ignoring, should remain stopped
358.632169   [threads] thread_needs_step_over: Need step over [LWP 359]? Ignoring, should remain stopped
358.632443   [threads] thread_needs_step_over: Need step over [LWP 360]? Ignoring, should remain stopped
358.633003   [threads] thread_needs_step_over: Need step over [LWP 361]? Ignoring, should remain stopped
358.633270   [threads] thread_needs_step_over: Need step over [LWP 364]? Ignoring, should remain stopped
358.633858   [threads] thread_needs_step_over: Need step over [LWP 365]? Ignoring, should remain stopped
358.634124   [threads] thread_needs_step_over: Need step over [LWP 366]? Ignoring, should remain stopped
358.634372   [threads] thread_needs_step_over: Need step over [LWP 367]? Ignoring, should remain stopped
358.634966   [threads] thread_needs_step_over: Need step over [LWP 368]? Ignoring, should remain stopped
358.635201   [threads] thread_needs_step_over: Need step over [LWP 369]? Ignoring, should remain stopped
358.635767   [threads] thread_needs_step_over: Need step over [LWP 370]? Ignoring, should remain stopped
358.636003   [threads] thread_needs_step_over: Need step over [LWP 371]? Ignoring, should remain stopped
358.636573   [threads] thread_needs_step_over: Need step over [LWP 372]? Ignoring, should remain stopped
358.636808   [threads] thread_needs_step_over: Need step over [LWP 373]? Ignoring, should remain stopped
358.637389   [threads] thread_needs_step_over: Need step over [LWP 374]? Ignoring, should remain stopped
358.637827   [threads] thread_needs_step_over: Need step over [LWP 375]? Ignoring, should remain stopped
358.638497   [threads] thread_needs_step_over: Need step over [LWP 376]? Ignoring, should remain stopped
358.638843   [threads] thread_needs_step_over: Need step over [LWP 377]? Ignoring, should remain stopped
358.639494   [threads] thread_needs_step_over: Need step over [LWP 378]? Ignoring, should remain stopped
358.640204   [threads] thread_needs_step_over: Need step over [LWP 379]? Ignoring, should remain stopped
358.640907   [threads] thread_needs_step_over: Need step over [LWP 380]? Ignoring, should remain stopped
358.641186   [threads] thread_needs_step_over: Need step over [LWP 381]? Ignoring, should remain stopped
358.641423   [threads] thread_needs_step_over: Need step over [LWP 382]? Ignoring, should remain stopped
358.642052   [threads] thread_needs_step_over: Need step over [LWP 383]? Ignoring, should remain stopped
358.642299   [threads] thread_needs_step_over: Need step over [LWP 384]? Ignoring, should remain stopped
358.642873   [threads] thread_needs_step_over: Need step over [LWP 385]? Ignoring, should remain stopped
358.643142   [threads] thread_needs_step_over: Need step over [LWP 386]? Ignoring, should remain stopped
358.644258   [threads] thread_needs_step_over: Need step over [LWP 387]? Ignoring, should remain stopped
358.644551   [threads] thread_needs_step_over: Need step over [LWP 388]? Ignoring, should remain stopped
358.644790   [threads] thread_needs_step_over: Need step over [LWP 389]? Ignoring, should remain stopped
358.645023   [threads] thread_needs_step_over: Need step over [LWP 390]? Ignoring, should remain stopped
358.645256   [threads] thread_needs_step_over: Need step over [LWP 391]? Ignoring, should remain stopped
358.645489   [threads] thread_needs_step_over: Need step over [LWP 392]? Ignoring, should remain stopped
358.646144   [threads] thread_needs_step_over: Need step over [LWP 393]? Ignoring, should remain stopped
358.646423   [threads] thread_needs_step_over: Need step over [LWP 394]? Ignoring, should remain stopped
358.646658   [threads] thread_needs_step_over: Need step over [LWP 395]? Ignoring, should remain stopped
358.647267   [threads] thread_needs_step_over: Need step over [LWP 396]? Ignoring, should remain stopped
358.647508   [threads] thread_needs_step_over: Need step over [LWP 397]? Ignoring, should remain stopped
358.648203   [threads] thread_needs_step_over: Need step over [LWP 398]? Ignoring, should remain stopped
358.648440   [threads] thread_needs_step_over: Need step over [LWP 399]? Ignoring, should remain stopped
358.649075   [threads] thread_needs_step_over: Need step over [LWP 400]? Ignoring, should remain stopped
358.649328   [threads] thread_needs_step_over: Need step over [LWP 401]? Ignoring, should remain stopped
358.650142   [threads] thread_needs_step_over: Need step over [LWP 403]? Ignoring, should remain stopped
358.650914   [threads] thread_needs_step_over: Need step over [LWP 404]? Ignoring, should remain stopped
358.651170   [threads] thread_needs_step_over: Need step over [LWP 405]? Ignoring, should remain stopped
358.651775   [threads] thread_needs_step_over: Need step over [LWP 406]? Ignoring, should remain stopped
358.652026   [threads] thread_needs_step_over: Need step over [LWP 407]? Ignoring, should remain stopped
358.652649   [threads] thread_needs_step_over: Need step over [LWP 408]? Ignoring, should remain stopped
358.652891   [threads] thread_needs_step_over: Need step over [LWP 409]? Ignoring, should remain stopped
358.653514   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.653911   [threads] get_pc: pc is 0x4e9fb3e8
358.654555   [threads] thread_needs_step_over: Need step over [LWP 410]? No, no breakpoint found at 0x4e9fb3e8
358.654920   [threads] thread_needs_step_over: Need step over [LWP 411]? Ignoring, should remain stopped
358.655544   [threads] thread_needs_step_over: Need step over [LWP 412]? Ignoring, should remain stopped
358.655782   [threads] thread_needs_step_over: Need step over [LWP 414]? Ignoring, should remain stopped
358.656389   [threads] thread_needs_step_over: Need step over [LWP 433]? Ignoring, should remain stopped
358.656630   [threads] thread_needs_step_over: Need step over [LWP 436]? Ignoring, should remain stopped
358.657350   [threads] thread_needs_step_over: Need step over [LWP 437]? Ignoring, should remain stopped
358.657597   [threads] thread_needs_step_over: Need step over [LWP 483]? Ignoring, should remain stopped
358.658192   [threads] thread_needs_step_over: Need step over [LWP 484]? Ignoring, should remain stopped
358.658434   [threads] thread_needs_step_over: Need step over [LWP 493]? Ignoring, should remain stopped
358.659035   [threads] thread_needs_step_over: Need step over [LWP 508]? Ignoring, should remain stopped
358.659275   [threads] thread_needs_step_over: Need step over [LWP 613]? Ignoring, should remain stopped
358.659883   [threads] thread_needs_step_over: Need step over [LWP 624]? Ignoring, should remain stopped
358.660595   [threads] thread_needs_step_over: Need step over [LWP 655]? Ignoring, should remain stopped
358.660847   [threads] thread_needs_step_over: Need step over [LWP 660]? Ignoring, should remain stopped
358.661450   [threads] thread_needs_step_over: Need step over [LWP 661]? Ignoring, should remain stopped
358.661705   [threads] thread_needs_step_over: Need step over [LWP 1074]? Ignoring, should remain stopped
358.662291   [threads] thread_needs_step_over: Need step over [LWP 1118]? Ignoring, should remain stopped
358.662576   [threads] thread_needs_step_over: Need step over [LWP 1293]? Ignoring, should remain stopped
358.664641   [threads] thread_needs_step_over: Need step over [LWP 2999]? Ignoring, should remain stopped
358.665493   [threads] resume: Resuming, no pending status or step over needed
358.666021   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
358.666797   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4624
358.667055   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
358.667969   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4624
358.668403   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
358.668669   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4624
358.669441   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
358.669799   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4624
358.670666   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
358.670982   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4624
358.671222   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
358.672011   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4624
358.672285   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
358.672939   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4624
358.673226   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
358.673471   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4624
358.674294   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
358.675010   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4624
358.675339   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
358.676101   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4624
358.676375   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
358.677225   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4624
358.677467   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
358.678059   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4624
358.678293   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
358.678856   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4624
358.679373   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
358.679797   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4624
358.680470   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
358.680835   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4624
358.681411   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
358.681941   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4624
358.682193   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
358.682732   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4624
358.682967   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
358.683502   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4624
358.683740   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
358.684268   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4624
358.684501   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
358.685036   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4624
358.685541   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
358.685797   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4624
358.686480   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
358.686727   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4624
358.687371   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
358.687630   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4624
358.688199   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
358.688948   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4624
358.689193   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
358.689968   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4624
358.690287   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
358.690901   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4624
358.691148   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
358.691743   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4624
358.691989   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
358.692701   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4624
358.692934   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
358.693172   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4624
358.693848   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
358.694408   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4624
358.694646   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
358.695190   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4624
358.695422   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
358.696038   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4624
358.696277   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
358.696813   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4624
358.697047   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
358.697672   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4624
358.697906   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
358.698517   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4624
358.698748   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
358.699277   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4624
358.699531   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
358.700270   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4624
358.700868   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
358.701109   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4624
358.701748   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
358.701987   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4624
358.702217   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
358.702769   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4624
358.703383   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
358.703641   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4624
358.704177   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
358.704416   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4624
358.704945   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
358.705182   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4624
358.705710   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
358.706342   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4624
358.706592   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
358.707209   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4624
358.707444   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
358.707680   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4624
358.708295   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
358.708820   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4624
358.709072   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
358.709684   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4624
358.710154   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
358.710271   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4624
358.710356   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
358.710439   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4624
358.710518   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
358.710598   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4624
358.710677   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
358.710757   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4624
358.710969   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
358.711220   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4624
358.711463   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
358.711706   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4624
358.711949   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
358.712191   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4624
358.712427   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
358.712674   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.712911   [threads] resume_one_thread: resuming LWP 410
358.713143   [threads] proceed_one_lwp: lwp 410
358.713391   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.713631   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
358.713910   [threads] resume_one_lwp_throw: Resuming lwp 410 (continue, signal 0, stop not expected)
358.714297 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.410
358.714697   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
358.714951   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4624
358.715197   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
358.715444   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4624
358.715682   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
358.715924   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4624
358.716168   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
358.716409   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4624
358.716643   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
358.716882   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4624
358.717120   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
358.717366   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4624
358.717604   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
358.717845   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4624
358.718087   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
358.718334   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4624
358.718571   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
358.718811   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4624
358.719050   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
358.719300   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4624
358.719544   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
358.719785   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4624
358.720072   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
358.720333   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4624
358.720579   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
358.720825   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4624
358.721068   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
358.721317   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4624
358.721561   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
358.721802   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4624
358.722039   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
358.722284   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4624
358.722534   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
358.722777   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4624
358.723015   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
358.723254   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4624
358.723495   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 0
358.723741   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4624
358.723975 [threads] resume: exit
358.724206 [threads] wait_1: enter
358.724436   [threads] wait_1: [<all threads>]
358.724984   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 410, ERRNO-OK
358.725281   [threads] wait_for_event_filtered: waitpid 410 received SIGTRAP - Trace/breakpoint trap (stopped)
358.725689   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.725940   [threads] get_pc: pc is 0x4e9fb3e8
358.726185   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.726427   [threads] get_pc: pc is 0x4e9fb3e8
358.726764   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
358.727171   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.727516   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.727804   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORK_DONE
358.728054   [threads] wait_1: Hit a non-gdbserver trap event.
358.728396   [threads] stop_all_lwps: enter
358.728627     [threads] stop_all_lwps: stop, except=none
358.728900     [threads] wait_for_sigstop: pulling events
358.729200     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
358.729912     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
358.730382     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
358.730690     [threads] stop_all_lwps: setting stopping_threads back to !stopping
358.730933   [threads] stop_all_lwps: exit
358.731342   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
358.731601   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
358.731853   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
358.732099   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
358.732346   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
358.732588   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
358.732829   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
358.733073   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
358.733317   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
358.733559   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
358.733799   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
358.734042   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
358.734283   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
358.734527   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
358.734764   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
358.735009   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
358.735250   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
358.735498   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
358.735784   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
358.736045   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
358.736291   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
358.736545   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
358.736791   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
358.737036   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
358.737287   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
358.737536   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
358.737782   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
358.738026   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
358.738278   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
358.738521   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
358.738762   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
358.739003   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
358.739253   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
358.739495   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
358.739745   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
358.739987   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
358.740322   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
358.740574   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
358.740817   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
358.741062   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
358.741310   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
358.741552   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
358.741794   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
358.742040   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
358.742284   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
358.742538   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
358.747258   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
358.747521   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
358.747777   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
358.748023   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
358.748264   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
358.748503   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
358.748749   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
358.748988   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
358.749230   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
358.749467   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
358.749713   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
358.749992   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
358.750356   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
358.750604   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
358.750855   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
358.751101   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
358.751343   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
358.751584   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
358.751837   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
358.752085   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
358.752330   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
358.752571   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
358.752818   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
358.753059   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
358.753305   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
358.753546   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
358.753795   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
358.754040   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
358.754285   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
358.754718   [threads] wait_1: ret = LWP 316.410, status->kind = VFORK_DONE
358.754975 [threads] wait_1: exit
358.755266 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:7
358.756840 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.757139 [threads] handle_serial_event: handling possible serial event
358.758167 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.758432 [threads] handle_serial_event: handling possible serial event
358.759382 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.759641 [threads] handle_serial_event: handling possible serial event
358.760929 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.761197 [threads] handle_serial_event: handling possible serial event
358.762277 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.762540 [threads] handle_serial_event: handling possible serial event
358.762910 [threads] write_memory: Writing 01de to 0x0045b444 in process 316
358.763868 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.764131 [threads] handle_serial_event: handling possible serial event
358.764951 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.765211 [threads] handle_serial_event: handling possible serial event
358.765581 [threads] write_memory: Writing 01de to 0x4e90bb30 in process 316
358.766464 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.766725 [threads] handle_serial_event: handling possible serial event
358.767569 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.767828 [threads] handle_serial_event: handling possible serial event
358.768185 [threads] write_memory: Writing 01de to 0x4e98a7d8 in process 316
358.769009 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.769270 [threads] handle_serial_event: handling possible serial event
358.770124 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.770304 [threads] handle_serial_event: handling possible serial event
358.770547 [threads] write_memory: Writing 01de to 0x4ea6e998 in process 316
358.771321 [event-loop] handle_file_event: invoking fd file handler `remote-net`
358.771425 [threads] handle_serial_event: handling possible serial event
358.771776 [threads] resume: enter
358.771990   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
358.772085   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
358.772497   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.772589   [threads] get_pc: pc is 0x4e97c214
358.772662   [threads] thread_needs_step_over: Need step over [LWP 316]? Ignoring, has pending signals.
358.772750   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.772822   [threads] get_pc: pc is 0x4e97c214
358.772906   [threads] thread_needs_step_over: Need step over [LWP 349]? No, no breakpoint found at 0x4e97c214
358.772997   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.773070   [threads] get_pc: pc is 0x4e97c214
358.773143   [threads] thread_needs_step_over: Need step over [LWP 350]? No, no breakpoint found at 0x4e97c214
358.773225   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.773283   [threads] get_pc: pc is 0x4e97c216
358.773362   [threads] thread_needs_step_over: Need step over [LWP 351]? No, no breakpoint found at 0x4e97c216
358.773450   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.773525   [threads] get_pc: pc is 0x4e97c216
358.773599   [threads] thread_needs_step_over: Need step over [LWP 352]? No, no breakpoint found at 0x4e97c216
358.773692   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.773763   [threads] get_pc: pc is 0x4e97c216
358.773824   [threads] thread_needs_step_over: Need step over [LWP 357]? No, no breakpoint found at 0x4e97c216
358.773944   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.774015   [threads] get_pc: pc is 0x4e97c216
358.774088   [threads] thread_needs_step_over: Need step over [LWP 358]? No, no breakpoint found at 0x4e97c216
358.774179   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.774260   [threads] get_pc: pc is 0x4e97c216
358.774333   [threads] thread_needs_step_over: Need step over [LWP 359]? No, no breakpoint found at 0x4e97c216
358.774420   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.774492   [threads] get_pc: pc is 0x4e97c216
358.774554   [threads] thread_needs_step_over: Need step over [LWP 360]? No, no breakpoint found at 0x4e97c216
358.774658   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.774732   [threads] get_pc: pc is 0x4e97c214
358.774806   [threads] thread_needs_step_over: Need step over [LWP 361]? No, no breakpoint found at 0x4e97c214
358.774892   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.774965   [threads] get_pc: pc is 0x4e97c216
358.775042   [threads] thread_needs_step_over: Need step over [LWP 364]? No, no breakpoint found at 0x4e97c216
358.775130   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.775202   [threads] get_pc: pc is 0x4e97c216
358.775272   [threads] thread_needs_step_over: Need step over [LWP 365]? No, no breakpoint found at 0x4e97c216
358.775363   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.775436   [threads] get_pc: pc is 0x4e97c216
358.775511   [threads] thread_needs_step_over: Need step over [LWP 366]? No, no breakpoint found at 0x4e97c216
358.775605   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.775683   [threads] get_pc: pc is 0x4e97c214
358.775756   [threads] thread_needs_step_over: Need step over [LWP 367]? No, no breakpoint found at 0x4e97c214
358.775842   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.775911   [threads] get_pc: pc is 0x4eb53d34
358.775995   [threads] thread_needs_step_over: Need step over [LWP 368]? No, no breakpoint found at 0x4eb53d34
358.776085   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.776164   [threads] get_pc: pc is 0x4e97c216
358.776237   [threads] thread_needs_step_over: Need step over [LWP 369]? No, no breakpoint found at 0x4e97c216
358.776329   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.776403   [threads] get_pc: pc is 0x4e97c216
358.776478   [threads] thread_needs_step_over: Need step over [LWP 370]? No, no breakpoint found at 0x4e97c216
358.776564   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.776636   [threads] get_pc: pc is 0x4e97c214
358.776711   [threads] thread_needs_step_over: Need step over [LWP 371]? No, no breakpoint found at 0x4e97c214
358.776800   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.776887   [threads] get_pc: pc is 0x4e97c216
358.776978   [threads] thread_needs_step_over: Need step over [LWP 372]? No, no breakpoint found at 0x4e97c216
358.777070   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.777145   [threads] get_pc: pc is 0x4e97c216
358.777219   [threads] thread_needs_step_over: Need step over [LWP 373]? No, no breakpoint found at 0x4e97c216
358.777304   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.777384   [threads] get_pc: pc is 0x4e97c214
358.777457   [threads] thread_needs_step_over: Need step over [LWP 374]? No, no breakpoint found at 0x4e97c214
358.777547   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.777617   [threads] get_pc: pc is 0x4e97c216
358.777700   [threads] thread_needs_step_over: Need step over [LWP 375]? No, no breakpoint found at 0x4e97c216
358.777791   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.777872   [threads] get_pc: pc is 0x4e97c216
358.777955   [threads] thread_needs_step_over: Need step over [LWP 376]? No, no breakpoint found at 0x4e97c216
358.778046   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.778124   [threads] get_pc: pc is 0x4e97c216
358.778207   [threads] thread_needs_step_over: Need step over [LWP 377]? No, no breakpoint found at 0x4e97c216
358.778299   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.778379   [threads] get_pc: pc is 0x4e97c216
358.778453   [threads] thread_needs_step_over: Need step over [LWP 378]? No, no breakpoint found at 0x4e97c216
358.778536   [threads] linux_get_pc_32bit: stop pc is 0x45b458
358.778607   [threads] get_pc: pc is 0x45b458
358.778680   [threads] thread_needs_step_over: Need step over [LWP 379]? No, no breakpoint found at 0x45b458
358.778767   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.778840   [threads] get_pc: pc is 0x4e97c214
358.778916   [threads] thread_needs_step_over: Need step over [LWP 380]? No, no breakpoint found at 0x4e97c214
358.778999   [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
358.779070   [threads] get_pc: pc is 0x4e9f6646
358.779144   [threads] thread_needs_step_over: Need step over [LWP 381]? No, no breakpoint found at 0x4e9f6646
358.779232   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.779307   [threads] get_pc: pc is 0x4e97c216
358.779382   [threads] thread_needs_step_over: Need step over [LWP 382]? No, no breakpoint found at 0x4e97c216
358.779468   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.779547   [threads] get_pc: pc is 0x4e97c214
358.779619   [threads] thread_needs_step_over: Need step over [LWP 383]? No, no breakpoint found at 0x4e97c214
358.779710   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.779780   [threads] get_pc: pc is 0x4e97c216
358.779849   [threads] thread_needs_step_over: Need step over [LWP 384]? No, no breakpoint found at 0x4e97c216
358.779923   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.779993   [threads] get_pc: pc is 0x4e97c216
358.780153   [threads] thread_needs_step_over: Need step over [LWP 385]? No, no breakpoint found at 0x4e97c216
358.780251   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.780332   [threads] get_pc: pc is 0x4e97c216
358.780420   [threads] thread_needs_step_over: Need step over [LWP 386]? No, no breakpoint found at 0x4e97c216
358.780515   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.780595   [threads] get_pc: pc is 0x4e97c216
358.780665   [threads] thread_needs_step_over: Need step over [LWP 387]? No, no breakpoint found at 0x4e97c216
358.780739   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.780815   [threads] get_pc: pc is 0x4e97c216
358.780889   [threads] thread_needs_step_over: Need step over [LWP 388]? No, no breakpoint found at 0x4e97c216
358.780983   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.781056   [threads] get_pc: pc is 0x4e97c216
358.781134   [threads] thread_needs_step_over: Need step over [LWP 389]? No, no breakpoint found at 0x4e97c216
358.781219   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.781293   [threads] get_pc: pc is 0x4e97c216
358.781366   [threads] thread_needs_step_over: Need step over [LWP 390]? No, no breakpoint found at 0x4e97c216
358.781453   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.781525   [threads] get_pc: pc is 0x4e97c216
358.781601   [threads] thread_needs_step_over: Need step over [LWP 391]? No, no breakpoint found at 0x4e97c216
358.781686   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.781757   [threads] get_pc: pc is 0x4e97c216
358.781830   [threads] thread_needs_step_over: Need step over [LWP 392]? No, no breakpoint found at 0x4e97c216
358.781926   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.782001   [threads] get_pc: pc is 0x4eb53d34
358.782075   [threads] thread_needs_step_over: Need step over [LWP 393]? No, no breakpoint found at 0x4eb53d34
358.782152   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.782223   [threads] get_pc: pc is 0x4e97c216
358.782297   [threads] thread_needs_step_over: Need step over [LWP 394]? No, no breakpoint found at 0x4e97c216
358.782392   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.782471   [threads] get_pc: pc is 0x4e97c216
358.782544   [threads] thread_needs_step_over: Need step over [LWP 395]? No, no breakpoint found at 0x4e97c216
358.782641   [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
358.782721   [threads] get_pc: pc is 0x4ea70c34
358.782806   [threads] thread_needs_step_over: Need step over [LWP 396]? No, no breakpoint found at 0x4ea70c34
358.782892   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.782972   [threads] get_pc: pc is 0x4e97c216
358.783054   [threads] thread_needs_step_over: Need step over [LWP 397]? No, no breakpoint found at 0x4e97c216
358.783146   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.783216   [threads] get_pc: pc is 0x4e97c216
358.783298   [threads] thread_needs_step_over: Need step over [LWP 398]? No, no breakpoint found at 0x4e97c216
358.783390   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.783469   [threads] get_pc: pc is 0x4eb53d34
358.783550   [threads] thread_needs_step_over: Need step over [LWP 399]? No, no breakpoint found at 0x4eb53d34
358.783652   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.783730   [threads] get_pc: pc is 0x4e97c214
358.783811   [threads] thread_needs_step_over: Need step over [LWP 400]? No, no breakpoint found at 0x4e97c214
358.783903   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.783978   [threads] get_pc: pc is 0x4e97c216
358.784054   [threads] thread_needs_step_over: Need step over [LWP 401]? No, no breakpoint found at 0x4e97c216
358.784139   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.784212   [threads] get_pc: pc is 0x4e97c216
358.784287   [threads] thread_needs_step_over: Need step over [LWP 403]? No, no breakpoint found at 0x4e97c216
358.784362   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.784435   [threads] get_pc: pc is 0x4e97c216
358.784508   [threads] thread_needs_step_over: Need step over [LWP 404]? No, no breakpoint found at 0x4e97c216
358.784594   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.784668   [threads] get_pc: pc is 0x4e97c216
358.784743   [threads] thread_needs_step_over: Need step over [LWP 405]? No, no breakpoint found at 0x4e97c216
358.784835   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.784910   [threads] get_pc: pc is 0x4e97c216
358.784991   [threads] thread_needs_step_over: Need step over [LWP 406]? No, no breakpoint found at 0x4e97c216
358.785080   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.785152   [threads] get_pc: pc is 0x4e97c214
358.785226   [threads] thread_needs_step_over: Need step over [LWP 407]? No, no breakpoint found at 0x4e97c214
358.785322   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.785401   [threads] get_pc: pc is 0x4e97c216
358.785473   [threads] thread_needs_step_over: Need step over [LWP 408]? No, no breakpoint found at 0x4e97c216
358.785565   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.785644   [threads] get_pc: pc is 0x4e97c216
358.785727   [threads] thread_needs_step_over: Need step over [LWP 409]? No, no breakpoint found at 0x4e97c216
358.785819   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.785889   [threads] get_pc: pc is 0x4e9fb3e8
358.785961   [threads] thread_needs_step_over: Need step over [LWP 410]? No, no breakpoint found at 0x4e9fb3e8
358.786053   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.786131   [threads] get_pc: pc is 0x4e97c214
358.786203   [threads] thread_needs_step_over: Need step over [LWP 411]? No, no breakpoint found at 0x4e97c214
358.786294   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.786365   [threads] get_pc: pc is 0x4e97c216
358.786438   [threads] thread_needs_step_over: Need step over [LWP 412]? No, no breakpoint found at 0x4e97c216
358.786530   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.786609   [threads] get_pc: pc is 0x4e97c216
358.786681   [threads] thread_needs_step_over: Need step over [LWP 414]? No, no breakpoint found at 0x4e97c216
358.786766   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.786838   [threads] get_pc: pc is 0x4e97c216
358.786912   [threads] thread_needs_step_over: Need step over [LWP 433]? No, no breakpoint found at 0x4e97c216
358.786997   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.787070   [threads] get_pc: pc is 0x4e97c214
358.787144   [threads] thread_needs_step_over: Need step over [LWP 436]? No, no breakpoint found at 0x4e97c214
358.787233   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.787302   [threads] get_pc: pc is 0x4e97c216
358.787389   [threads] thread_needs_step_over: Need step over [LWP 437]? No, no breakpoint found at 0x4e97c216
358.787482   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.787554   [threads] get_pc: pc is 0x4e97c216
358.787634   [threads] thread_needs_step_over: Need step over [LWP 483]? No, no breakpoint found at 0x4e97c216
358.787730   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.787802   [threads] get_pc: pc is 0x4e97c216
358.787877   [threads] thread_needs_step_over: Need step over [LWP 484]? No, no breakpoint found at 0x4e97c216
358.787969   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.788048   [threads] get_pc: pc is 0x4eb53d34
358.788130   [threads] thread_needs_step_over: Need step over [LWP 493]? No, no breakpoint found at 0x4eb53d34
358.788221   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.788301   [threads] get_pc: pc is 0x4e97c216
358.788371   [threads] thread_needs_step_over: Need step over [LWP 508]? No, no breakpoint found at 0x4e97c216
358.788473   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.788544   [threads] get_pc: pc is 0x4e97c216
358.788618   [threads] thread_needs_step_over: Need step over [LWP 613]? No, no breakpoint found at 0x4e97c216
358.788711   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.788791   [threads] get_pc: pc is 0x4e97c214
358.788872   [threads] thread_needs_step_over: Need step over [LWP 624]? No, no breakpoint found at 0x4e97c214
358.788964   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.789044   [threads] get_pc: pc is 0x4e97c216
358.789116   [threads] thread_needs_step_over: Need step over [LWP 655]? No, no breakpoint found at 0x4e97c216
358.789209   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.789287   [threads] get_pc: pc is 0x4e97c216
358.789370   [threads] thread_needs_step_over: Need step over [LWP 660]? No, no breakpoint found at 0x4e97c216
358.789464   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.789545   [threads] get_pc: pc is 0x4e97c216
358.789628   [threads] thread_needs_step_over: Need step over [LWP 661]? No, no breakpoint found at 0x4e97c216
358.789724   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.789797   [threads] get_pc: pc is 0x4e97c214
358.789872   [threads] thread_needs_step_over: Need step over [LWP 1074]? No, no breakpoint found at 0x4e97c214
358.789959   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.790148   [threads] get_pc: pc is 0x4e97c214
358.790243   [threads] thread_needs_step_over: Need step over [LWP 1118]? No, no breakpoint found at 0x4e97c214
358.790337   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.790412   [threads] get_pc: pc is 0x4e97c214
358.790480   [threads] thread_needs_step_over: Need step over [LWP 1293]? No, no breakpoint found at 0x4e97c214
358.790571   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.790655   [threads] get_pc: pc is 0x4e97c216
358.790724   [threads] thread_needs_step_over: Need step over [LWP 2999]? Ignoring, has pending signals.
358.790804   [threads] resume: Resuming, no pending status or step over needed
358.790896   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
358.790986   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.791070   [threads] resume_one_thread: resuming LWP 316
358.791147   [threads] proceed_one_lwp: lwp 316
358.791239   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.791320   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.791424   [threads] resume_one_lwp_throw: Resuming lwp 316 (continue, signal 17, stop not expected)
sigchld_handler
358.791768   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.316
358.791889   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
358.791978   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.792058   [threads] resume_one_thread: resuming LWP 349
358.792119   [threads] proceed_one_lwp: lwp 349
358.792202   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.792275   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.792355   [threads] resume_one_lwp_throw: Resuming lwp 349 (continue, signal 0, stop not expected)
358.792562   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.349
358.792674   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
358.792767   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.792853   [threads] resume_one_thread: resuming LWP 350
358.792929   [threads] proceed_one_lwp: lwp 350
358.793017   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.793096   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.793171   [threads] resume_one_lwp_throw: Resuming lwp 350 (continue, signal 0, stop not expected)
358.793362   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.350
358.793468   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
358.793556   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.793630   [threads] resume_one_thread: resuming LWP 351
358.793714   [threads] proceed_one_lwp: lwp 351
358.793798   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.793881   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.793949   [threads] resume_one_lwp_throw: Resuming lwp 351 (continue, signal 0, stop not expected)
358.794133   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.351
358.794242   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
358.794335   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.794420   [threads] resume_one_thread: resuming LWP 352
358.794500   [threads] proceed_one_lwp: lwp 352
358.794588   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.794669   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.794738   [threads] resume_one_lwp_throw: Resuming lwp 352 (continue, signal 0, stop not expected)
358.794927   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.352
358.795025   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
358.795105   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.795183   [threads] resume_one_thread: resuming LWP 357
358.795260   [threads] proceed_one_lwp: lwp 357
358.795342   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.795418   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.795487   [threads] resume_one_lwp_throw: Resuming lwp 357 (continue, signal 0, stop not expected)
358.795736   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.357
358.795844   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
358.795934   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.796020   [threads] resume_one_thread: resuming LWP 358
358.796096   [threads] proceed_one_lwp: lwp 358
358.796187   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.796254   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.796333   [threads] resume_one_lwp_throw: Resuming lwp 358 (continue, signal 0, stop not expected)
358.796519   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.358
358.796628   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
358.796718   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.796795   [threads] resume_one_thread: resuming LWP 359
358.796861   [threads] proceed_one_lwp: lwp 359
358.796938   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.797930   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.798496   [threads] resume_one_lwp_throw: Resuming lwp 359 (continue, signal 0, stop not expected)
358.799283   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.359
358.800114   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
358.800744   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.801512   [threads] resume_one_thread: resuming LWP 360
358.801772   [threads] proceed_one_lwp: lwp 360
358.802008   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.802566   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.802785   [threads] resume_one_lwp_throw: Resuming lwp 360 (continue, signal 0, stop not expected)
358.803452   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.360
358.804071   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
358.804613   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.804863   [threads] resume_one_thread: resuming LWP 361
358.805361   [threads] proceed_one_lwp: lwp 361
358.805616   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.806132   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.806360   [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
358.806998   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
358.807586   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
358.807829   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.808365   [threads] resume_one_thread: resuming LWP 364
358.808583   [threads] proceed_one_lwp: lwp 364
358.809113   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.809336   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.809847   [threads] resume_one_lwp_throw: Resuming lwp 364 (continue, signal 0, stop not expected)
358.810763   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.364
358.811044   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
358.811603   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.812139   [threads] resume_one_thread: resuming LWP 365
358.812490   [threads] proceed_one_lwp: lwp 365
358.813127   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.813356   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.813956   [threads] resume_one_lwp_throw: Resuming lwp 365 (continue, signal 0, stop not expected)
358.814753   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.365
358.815029   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
358.815267   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.815837   [threads] resume_one_thread: resuming LWP 366
358.816055   [threads] proceed_one_lwp: lwp 366
358.816587   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.816814   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.817318   [threads] resume_one_lwp_throw: Resuming lwp 366 (continue, signal 0, stop not expected)
358.817665   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.366
358.818503   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
358.819159   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.819705   [threads] resume_one_thread: resuming LWP 367
358.819929   [threads] proceed_one_lwp: lwp 367
358.820536   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.820762   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.821281   [threads] resume_one_lwp_throw: Resuming lwp 367 (continue, signal 0, stop not expected)
358.821963   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.367
358.822240   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
358.822790   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.823321   [threads] resume_one_thread: resuming LWP 368
358.823559   [threads] proceed_one_lwp: lwp 368
358.824057   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.824673   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
358.824913   [threads] resume_one_lwp_throw: Resuming lwp 368 (continue, signal 0, stop not expected)
358.825538   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.368
358.826204   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
358.826471   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.826698   [threads] resume_one_thread: resuming LWP 369
358.827322   [threads] proceed_one_lwp: lwp 369
358.827556   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.828062   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.828306   [threads] resume_one_lwp_throw: Resuming lwp 369 (continue, signal 0, stop not expected)
358.829047   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.369
358.829638   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
358.829882   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.830557   [threads] resume_one_thread: resuming LWP 370
358.830778   [threads] proceed_one_lwp: lwp 370
358.831005   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.831543   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.831761   [threads] resume_one_lwp_throw: Resuming lwp 370 (continue, signal 0, stop not expected)
358.832446   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.370
358.833010   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
358.833701   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.833934   [threads] resume_one_thread: resuming LWP 371
358.834523   [threads] proceed_one_lwp: lwp 371
358.834758   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.835283   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.835505   [threads] resume_one_lwp_throw: Resuming lwp 371 (continue, signal 0, stop not expected)
358.836344   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.371
358.836995   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
358.837567   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.837805   [threads] resume_one_thread: resuming LWP 372
358.838402   [threads] proceed_one_lwp: lwp 372
358.838640   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.838866   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.839387   [threads] resume_one_lwp_throw: Resuming lwp 372 (continue, signal 0, stop not expected)
358.839816   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.372
358.840161   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
358.840255   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.840336   [threads] resume_one_thread: resuming LWP 373
358.840404   [threads] proceed_one_lwp: lwp 373
358.840485   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.840566   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.840644   [threads] resume_one_lwp_throw: Resuming lwp 373 (continue, signal 0, stop not expected)
358.840850   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.373
358.840957   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
358.841043   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.841122   [threads] resume_one_thread: resuming LWP 374
358.841201   [threads] proceed_one_lwp: lwp 374
358.841278   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.841352   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.841421   [threads] resume_one_lwp_throw: Resuming lwp 374 (continue, signal 0, stop not expected)
358.842004   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.374
358.842571   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
358.842670   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.842750   [threads] resume_one_thread: resuming LWP 375
358.842818   [threads] proceed_one_lwp: lwp 375
358.842903   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.842980   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.843049   [threads] resume_one_lwp_throw: Resuming lwp 375 (continue, signal 0, stop not expected)
358.843251   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.375
358.843360   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
358.843447   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.843521   [threads] resume_one_thread: resuming LWP 376
358.843594   [threads] proceed_one_lwp: lwp 376
358.843685   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.843760   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.843831   [threads] resume_one_lwp_throw: Resuming lwp 376 (continue, signal 0, stop not expected)
358.844022   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.376
358.844127   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
358.844201   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.844265   [threads] resume_one_thread: resuming LWP 377
358.844342   [threads] proceed_one_lwp: lwp 377
358.844442   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.844519   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.844588   [threads] resume_one_lwp_throw: Resuming lwp 377 (continue, signal 0, stop not expected)
358.844841   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.377
358.844963   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
358.845059   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.845144   [threads] resume_one_thread: resuming LWP 378
358.845217   [threads] proceed_one_lwp: lwp 378
358.845300   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.845377   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.845456   [threads] resume_one_lwp_throw: Resuming lwp 378 (continue, signal 0, stop not expected)
358.845658   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.378
358.845763   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
358.845856   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.845943   [threads] resume_one_thread: resuming LWP 379
358.846010   [threads] proceed_one_lwp: lwp 379
358.846076   [threads] proceed_one_lwp:    stepping LWP 379, client wants it stepping
358.846166   [threads] linux_get_pc_32bit: stop pc is 0x45b458
358.846334   [threads] linux_get_pc_32bit: stop pc is 0x45b458
358.846501   [threads] set_single_step_breakpoint: [zyan1]  thread LWP 316.379
358.846679   [threads] write_memory: Writing f0f700a0 to 0x0045b45c in process 316
358.846822   [threads] linux_get_pc_32bit: stop pc is 0x45b458
358.846916   [threads] resume_one_lwp_throw:   continue from pc 0x45b458
358.846983   [threads] resume_one_lwp_throw: Resuming lwp 379 (continue, signal 0, stop not expected)
sigchld_handler
358.847363   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.379
358.847483   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
358.847575   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.847654   [threads] resume_one_thread: resuming LWP 380
358.847720   [threads] proceed_one_lwp: lwp 380
358.847808   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.847875   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.847948   [threads] resume_one_lwp_throw: Resuming lwp 380 (continue, signal 0, stop not expected)
358.848320   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.380
358.848440   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
358.848529   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.848613   [threads] resume_one_thread: resuming LWP 381
358.848690   [threads] proceed_one_lwp: lwp 381
358.848769   [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
358.848839   [threads] resume_one_lwp_throw:   continue from pc 0x4e9f6646
358.848908   [threads] resume_one_lwp_throw: Resuming lwp 381 (continue, signal 0, stop not expected)
358.849097   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.381
358.849216   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
358.849314   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.849406   [threads] resume_one_thread: resuming LWP 382
358.849474   [threads] proceed_one_lwp: lwp 382
358.849554   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.849629   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.849697   [threads] resume_one_lwp_throw: Resuming lwp 382 (continue, signal 0, stop not expected)
358.849992   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.382
358.850228   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
358.850323   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.850403   [threads] resume_one_thread: resuming LWP 383
358.850482   [threads] proceed_one_lwp: lwp 383
358.850563   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.850642   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.850711   [threads] resume_one_lwp_throw: Resuming lwp 383 (continue, signal 0, stop not expected)
358.856158   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.383
358.856303   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
358.856394   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.856475   [threads] resume_one_thread: resuming LWP 384
358.856544   [threads] proceed_one_lwp: lwp 384
358.856633   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.856713   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.856781   [threads] resume_one_lwp_throw: Resuming lwp 384 (continue, signal 0, stop not expected)
358.857180   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.384
358.857308   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
358.857396   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.857476   [threads] resume_one_thread: resuming LWP 385
358.857546   [threads] proceed_one_lwp: lwp 385
358.857637   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.857718   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.857792   [threads] resume_one_lwp_throw: Resuming lwp 385 (continue, signal 0, stop not expected)
358.858050   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.385
358.858169   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
358.858257   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.858335   [threads] resume_one_thread: resuming LWP 386
358.858403   [threads] proceed_one_lwp: lwp 386
358.858493   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.858575   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.858642   [threads] resume_one_lwp_throw: Resuming lwp 386 (continue, signal 0, stop not expected)
358.859000   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.386
358.859119   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
358.859209   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.859282   [threads] resume_one_thread: resuming LWP 387
358.859338   [threads] proceed_one_lwp: lwp 387
358.859428   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.859504   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.859573   [threads] resume_one_lwp_throw: Resuming lwp 387 (continue, signal 0, stop not expected)
358.859766   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.387
358.859862   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
358.859949   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.860106   [threads] resume_one_thread: resuming LWP 388
358.860173   [threads] proceed_one_lwp: lwp 388
358.860240   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.860313   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.860393   [threads] resume_one_lwp_throw: Resuming lwp 388 (continue, signal 0, stop not expected)
358.860579   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.388
358.861183   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
358.861298   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.861379   [threads] resume_one_thread: resuming LWP 389
358.861446   [threads] proceed_one_lwp: lwp 389
358.861531   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.861608   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.861672   [threads] resume_one_lwp_throw: Resuming lwp 389 (continue, signal 0, stop not expected)
358.861874   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.389
358.861989   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
358.862070   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.862136   [threads] resume_one_thread: resuming LWP 390
358.862213   [threads] proceed_one_lwp: lwp 390
358.862293   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.862368   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.862436   [threads] resume_one_lwp_throw: Resuming lwp 390 (continue, signal 0, stop not expected)
358.862682   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.390
358.862797   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
358.862893   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.862970   [threads] resume_one_thread: resuming LWP 391
358.863038   [threads] proceed_one_lwp: lwp 391
358.863118   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.863193   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.863261   [threads] resume_one_lwp_throw: Resuming lwp 391 (continue, signal 0, stop not expected)
358.863447   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.391
358.863557   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
358.863647   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.863724   [threads] resume_one_thread: resuming LWP 392
358.863789   [threads] proceed_one_lwp: lwp 392
358.863879   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.863962   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.864028   [threads] resume_one_lwp_throw: Resuming lwp 392 (continue, signal 0, stop not expected)
358.864209   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.392
358.864318   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
358.864405   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.864480   [threads] resume_one_thread: resuming LWP 393
358.864548   [threads] proceed_one_lwp: lwp 393
358.864628   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.864702   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
358.864768   [threads] resume_one_lwp_throw: Resuming lwp 393 (continue, signal 0, stop not expected)
358.864965   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.393
358.865068   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
358.865162   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.865249   [threads] resume_one_thread: resuming LWP 394
358.865324   [threads] proceed_one_lwp: lwp 394
358.865401   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.865479   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.865555   [threads] resume_one_lwp_throw: Resuming lwp 394 (continue, signal 0, stop not expected)
358.865889   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.394
358.866014   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
358.866103   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.866188   [threads] resume_one_thread: resuming LWP 395
358.866265   [threads] proceed_one_lwp: lwp 395
358.866354   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.866426   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.866504   [threads] resume_one_lwp_throw: Resuming lwp 395 (continue, signal 0, stop not expected)
358.866748   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.395
358.866867   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
358.866965   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.867043   [threads] resume_one_thread: resuming LWP 396
358.867113   [threads] proceed_one_lwp: lwp 396
358.867192   [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
358.867275   [threads] resume_one_lwp_throw:   continue from pc 0x4ea70c34
358.867351   [threads] resume_one_lwp_throw: Resuming lwp 396 (continue, signal 0, stop not expected)
358.867544   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.396
358.867659   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
358.867754   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.867840   [threads] resume_one_thread: resuming LWP 397
358.867918   [threads] proceed_one_lwp: lwp 397
358.868008   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.868087   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.868157   [threads] resume_one_lwp_throw: Resuming lwp 397 (continue, signal 0, stop not expected)
358.868457   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.397
358.868577   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
358.868666   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.868756   [threads] resume_one_thread: resuming LWP 398
358.868837   [threads] proceed_one_lwp: lwp 398
358.868927   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.869007   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.869082   [threads] resume_one_lwp_throw: Resuming lwp 398 (continue, signal 0, stop not expected)
358.869435   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.398
358.869557   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
358.869659   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.869747   [threads] resume_one_thread: resuming LWP 399
358.869824   [threads] proceed_one_lwp: lwp 399
358.869913   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.869992   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
358.870200   [threads] resume_one_lwp_throw: Resuming lwp 399 (continue, signal 0, stop not expected)
358.870469   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.399
358.870586   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
358.870683   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.870772   [threads] resume_one_thread: resuming LWP 400
358.870845   [threads] proceed_one_lwp: lwp 400
358.870917   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.870999   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.871072   [threads] resume_one_lwp_throw: Resuming lwp 400 (continue, signal 0, stop not expected)
358.872056   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.400
358.872207   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
358.872300   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.872378   [threads] resume_one_thread: resuming LWP 401
358.872447   [threads] proceed_one_lwp: lwp 401
358.872542   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.872619   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.872696   [threads] resume_one_lwp_throw: Resuming lwp 401 (continue, signal 0, stop not expected)
358.872964   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.401
358.873090   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
358.873180   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.873260   [threads] resume_one_thread: resuming LWP 403
358.873330   [threads] proceed_one_lwp: lwp 403
358.873414   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.873486   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.873553   [threads] resume_one_lwp_throw: Resuming lwp 403 (continue, signal 0, stop not expected)
358.873752   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.403
358.873868   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
358.873956   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.874046   [threads] resume_one_thread: resuming LWP 404
358.874125   [threads] proceed_one_lwp: lwp 404
358.874206   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.874282   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.874349   [threads] resume_one_lwp_throw: Resuming lwp 404 (continue, signal 0, stop not expected)
358.874536   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.404
358.874631   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
358.874711   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.874789   [threads] resume_one_thread: resuming LWP 405
358.874855   [threads] proceed_one_lwp: lwp 405
358.874934   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.875008   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.875085   [threads] resume_one_lwp_throw: Resuming lwp 405 (continue, signal 0, stop not expected)
358.875334   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.405
358.875458   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
358.875555   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.875634   [threads] resume_one_thread: resuming LWP 406
358.875711   [threads] proceed_one_lwp: lwp 406
358.875806   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.875887   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.875963   [threads] resume_one_lwp_throw: Resuming lwp 406 (continue, signal 0, stop not expected)
358.876211   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.406
358.876322   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
358.876412   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.876499   [threads] resume_one_thread: resuming LWP 407
358.876567   [threads] proceed_one_lwp: lwp 407
358.876647   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.876731   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.876799   [threads] resume_one_lwp_throw: Resuming lwp 407 (continue, signal 0, stop not expected)
358.877087   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.407
358.877207   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
358.877297   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.877382   [threads] resume_one_thread: resuming LWP 408
358.877448   [threads] proceed_one_lwp: lwp 408
358.877540   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.877613   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.877690   [threads] resume_one_lwp_throw: Resuming lwp 408 (continue, signal 0, stop not expected)
358.877883   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.408
358.877989   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
358.878077   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.878159   [threads] resume_one_thread: resuming LWP 409
358.878226   [threads] proceed_one_lwp: lwp 409
358.878320   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.878395   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.878463   [threads] resume_one_lwp_throw: Resuming lwp 409 (continue, signal 0, stop not expected)
358.880246   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.409
358.881034   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
358.881279   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.881891   [threads] resume_one_thread: resuming LWP 410
358.882118   [threads] proceed_one_lwp: lwp 410
358.882679   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.882918   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
358.883464   [threads] resume_one_lwp_throw: Resuming lwp 410 (continue, signal 0, stop not expected)
sigchld_handler
358.885669   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.410
358.886110   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
358.886458   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.887095   [threads] resume_one_thread: resuming LWP 411
358.887316   [threads] proceed_one_lwp: lwp 411
358.887903   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.888138   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.888690   [threads] resume_one_lwp_throw: Resuming lwp 411 (continue, signal 0, stop not expected)
358.889059   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.411
358.889693   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
358.890381   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.890622   [threads] resume_one_thread: resuming LWP 412
358.891182   [threads] proceed_one_lwp: lwp 412
358.891448   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.891674   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.892223   [threads] resume_one_lwp_throw: Resuming lwp 412 (continue, signal 0, stop not expected)
358.892585   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.412
358.893382   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
358.893981   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.894241   [threads] resume_one_thread: resuming LWP 414
358.894463   [threads] proceed_one_lwp: lwp 414
358.895035   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.895262   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.895819   [threads] resume_one_lwp_throw: Resuming lwp 414 (continue, signal 0, stop not expected)
358.896179   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.414
358.896812   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
358.897395   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.898062   [threads] resume_one_thread: resuming LWP 433
358.898314   [threads] proceed_one_lwp: lwp 433
358.898555   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.899218   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.899448   [threads] resume_one_lwp_throw: Resuming lwp 433 (continue, signal 0, stop not expected)
358.899815   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.433
358.900538   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
358.900790   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.901405   [threads] resume_one_thread: resuming LWP 436
358.901631   [threads] proceed_one_lwp: lwp 436
358.902204   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.902436   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.902989   [threads] resume_one_lwp_throw: Resuming lwp 436 (continue, signal 0, stop not expected)
358.903721   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.436
358.904007   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
358.904592   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.904828   [threads] resume_one_thread: resuming LWP 437
358.905405   [threads] proceed_one_lwp: lwp 437
358.905642   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.906201   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.906447   [threads] resume_one_lwp_throw: Resuming lwp 437 (continue, signal 0, stop not expected)
358.907218   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.437
358.907985   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
358.908233   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.908990   [threads] resume_one_thread: resuming LWP 483
358.909254   [threads] proceed_one_lwp: lwp 483
358.909499   [threads] linux_get_pc_32bit: sigchld_handler
stop pc is 0x4e97c216
358.910458   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.911066   [threads] resume_one_lwp_throw: Resuming lwp 483 (continue, signal 0, stop not expected)
358.911487   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.483
358.912170   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
358.912423   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.913034   [threads] resume_one_thread: resuming LWP 484
358.913261   [threads] proceed_one_lwp: lwp 484
358.913832   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.914057   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.914616   [threads] resume_one_lwp_throw: Resuming lwp 484 (continue, signal 0, stop not expected)
358.914977   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.484
358.916229   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
358.916483   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.916833   [threads] resume_one_thread: resuming LWP 493
358.917143   [threads] proceed_one_lwp: lwp 493
358.917806   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
358.918039   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
358.918570   [threads] resume_one_lwp_throw: Resuming lwp 493 (continue, signal 0, stop not expected)
358.918966   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.493
358.919582   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
358.920307   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.920687   [threads] resume_one_thread: resuming LWP 508
358.921388   [threads] proceed_one_lwp: lwp 508
358.921679   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.922277   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.922508   [threads] resume_one_lwp_throw: Resuming lwp 508 (continue, signal 0, stop not expected)
358.923192   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.508
358.923991   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
358.924246   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.924897   [threads] resume_one_thread: resuming LWP 613
358.925119   [threads] proceed_one_lwp: lwp 613
358.925354   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.926012   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.926243   [threads] resume_one_lwp_throw: Resuming lwp 613 (continue, signal 0, stop not expected)
358.927002   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.613
358.927602   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
358.928197   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.928455   [threads] resume_one_thread: resuming LWP 624
358.929184   [threads] proceed_one_lwp: lwp 624
358.929424   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.929649   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.930378   [threads] resume_one_lwp_throw: Resuming lwp 624 (continue, signal 0, stop not expected)
358.931200   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.624
358.931490   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
358.932077   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.932315   [threads] resume_one_thread: resuming LWP 655
358.932898   [threads] proceed_one_lwp: lwp 655
358.933263   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.933914   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.934140   [threads] resume_one_lwp_throw: Resuming lwp 655 (continue, signal 0, stop not expected)
358.938787   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.655
358.939663   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
358.939941   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.940712   [threads] resume_one_thread: resuming LWP 660
358.940944   [threads] proceed_one_lwp: lwp 660
358.941544   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.941803   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.942026   [threads] resume_one_lwp_throw: Resuming lwp 660 (continue, signal 0, stop not expected)
358.942750   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.660
358.943902   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
358.944180   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.944773   [threads] resume_one_thread: resuming LWP 661
358.945000   [threads] proceed_one_lwp: lwp 661
358.945727   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.946260   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.946508   [threads] resume_one_lwp_throw: Resuming lwp 661 (continue, signal 0, stop not expected)
358.947168   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.661
358.947816   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
358.948073   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.948648   [threads] resume_one_thread: resuming LWP 1074
358.948874   [threads] proceed_one_lwp: lwp 1074
358.949439   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.949668   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.950274   [threads] resume_one_lwp_throw: Resuming lwp 1074 (continue, signal 0, stop not expected)
358.950650   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1074
358.951321   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
358.951929   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.952323   [threads] resume_one_thread: resuming LWP 1118
358.952913   [threads] proceed_one_lwp: lwp 1118
358.953450   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.953699   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.954246   [threads] resume_one_lwp_throw: Resuming lwp 1118 (continue, signal 0, stop not expected)
358.954616   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1118
358.955240   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
358.956006   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.956593   [threads] resume_one_thread: resuming LWP 1293
358.956843   [threads] proceed_one_lwp: lwp 1293
358.957081   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.957643   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
358.958174   [threads] resume_one_lwp_throw: Resuming lwp 1293 (continue, signal 0, stop not expected)
358.958566   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1293
358.959185   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 0
358.959801   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
358.960107   [threads] resume_one_thread: resuming LWP 2999
358.960870   [threads] proceed_one_lwp: lwp 2999
358.961131   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
358.961359   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
358.961992   [threads] resume_one_lwp_throw: Resuming lwp 2999 (continue, signal 32, stop not expected)
358.962366   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.2999
358.962981 [threads] resume: exit
358.963539 [threads] wait_1: enter
358.963946   [threads] wait_1: [<all threads>]
358.964737   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3020, ERRNO-OK
358.965525   [threads] wait_for_event_filtered: waitpid 3020 received SIGSTOP - Stopped (signal) (stopped)
358.966251   [threads] filter_event: Saving LWP 3020 status SIGSTOP - Stopped (signal) (stopped) in stopped_pids list
358.966884   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 2999, ERRNO-OK
358.967144   [threads] wait_for_event_filtered: waitpid 2999 received SIGTRAP - Trace/breakpoint trap (stopped)
358.967891   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7d8
358.968485   [threads] get_pc: pc is 0x4e98a7d8
358.968740   [threads] save_stop_reason: LWP 316.2999 stopped by software breakpoint
358.969336   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 410, ERRNO-OK
358.969939   [threads] wait_for_event_filtered: waitpid 410 received SIGTRAP - Trace/breakpoint trap (stopped)
358.970411   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.971053   [threads] get_pc: pc is 0x4e9fb3e8
358.971648   [threads] handle_extended_wait: Got fork event from LWP 410, new child is 3020
358.972904   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
358.973197   [threads] get_pc: pc is 0x4e9fb3e8
358.973897   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 379, ERRNO-OK
358.974206   [threads] wait_for_event_filtered: waitpid 379 received SIGTRAP - Trace/breakpoint trap (stopped)
358.974943   [threads] linux_get_pc_32bit: stop pc is 0x45b45c
358.975509   [threads] get_pc: pc is 0x45b45c
358.975789   [threads] save_stop_reason: LWP 316.379 stopped by software breakpoint
358.976386   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 316, ERRNO-OK
358.976674   [threads] wait_for_event_filtered: waitpid 316 received SIGCHLD - Child exited (stopped)
358.977551   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
358.977790   [threads] get_pc: pc is 0x4e97c214
358.978501   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
358.979263   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
358.979883   [threads] linux_get_pc_32bit: stop pc is 0x45b45c
358.980479   [threads] get_pc: pc is 0x45b45c
358.981212   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.379, last_resume_kind 1, lp->stop_reason 1
358.981513   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
358.982257   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7d8
358.982828   [threads] get_pc: pc is 0x4e98a7d8
358.983069   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.2999, last_resume_kind 0, lp->stop_reason 1
358.983656   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
358.983943   [threads] linux_get_pc_32bit: stop pc is 0x45b45c
358.984619   [threads] get_pc: pc is 0x45b45c
358.985150   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.379, last_resume_kind 1, lp->stop_reason 1
358.985459   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
sigchld_handler
358.986243   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3020.3020.0
358.986862   [threads] wait_1: Hit a non-gdbserver trap event.
358.987143   [threads] stop_all_lwps: enter
358.987719     [threads] stop_all_lwps: stop, except=LWP 316.410
358.988232     [threads] send_sigstop: Sending sigstop to lwp 349
sigchld_handler
358.989488     [threads] send_sigstop: Sending sigstop to lwp 350
sigchld_handler
358.990416     [threads] send_sigstop: Sending sigstop to lwp 351
sigchld_handler
358.991533     [threads] send_sigstop: Sending sigstop to lwp 352
sigchld_handler
358.992007     [threads] send_sigstop: Sending sigstop to lwp 357
358.992659 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 358
sigchld_handler
358.993694     [threads] send_sigstop: Sending sigstop to lwp 359
358.993959     [threads] send_sigstop: Sending sigstop to lwp 360
358.994572 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 361
358.995433 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 364
sigchld_handler
358.996429     [threads] send_sigstop: Sending sigstop to lwp 365
sigchld_handler
358.997289     [threads] send_sigstop: Sending sigstop to lwp 366
358.997559 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 367
sigchld_handler
358.998721     [threads] send_sigstop: Sending sigstop to lwp 368
358.999007 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 369
358.999705 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 370
sigchld_handler
359.000764     [threads] send_sigstop: Sending sigstop to lwp 371
sigchld_handler
359.001636     [threads] send_sigstop: Sending sigstop to lwp 372
359.001907 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 373
sigchld_handler
359.002806     [threads] send_sigstop: Sending sigstop to lwp 374
359.003619 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 375
sigchld_handler
359.004825     [threads] send_sigstop: Sending sigstop to lwp 376
sigchld_handler
359.005271     [threads] send_sigstop: Sending sigstop to lwp 377
359.005868 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 378
359.006563     [threads] send_sigstop: Sending sigstop to lwp 380
359.007138 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 381
sigchld_handler
359.008070     [threads] send_sigstop: Sending sigstop to lwp 382
359.008339 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 383
359.009054 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 384
359.009764 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 385
359.011296 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 386
359.012037 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 387
sigchld_handler
359.013091     [threads] send_sigstop: Sending sigstop to lwp 388
sigchld_handler
359.013876     [threads] send_sigstop: Sending sigstop to lwp 389
sigchld_handler
359.014639     [threads] send_sigstop: Sending sigstop to lwp 390
359.015361 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 391
sigchld_handler
359.016455     [threads] send_sigstop: Sending sigstop to lwp 392
sigchld_handler
359.016893     [threads] send_sigstop: Sending sigstop to lwp 393
359.017617     [threads] send_sigstop: Sending sigstop to lwp 394
359.018227 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 395
359.019062 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 396
359.019807 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 397
sigchld_handler
359.020682     [threads] send_sigstop: Sending sigstop to lwp 398
359.021546 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 399
359.021932 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 400
359.022669 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 401
359.023378 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 403
sigchld_handler
359.024235     [threads] send_sigstop: Sending sigstop to lwp 404
sigchld_handler
359.025136     [threads] send_sigstop: Sending sigstop to lwp 405
359.025759 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 406
359.026457 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 407
359.026861 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 408
sigchld_handler
359.028045     [threads] send_sigstop: Sending sigstop to lwp 409
359.028311 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 411
359.029015 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 412
359.029891 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 414
359.030337 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 433
359.031028 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 436
sigchld_handler
359.031647     [threads] send_sigstop: Sending sigstop to lwp 437
sigchld_handler
359.032156     [threads] send_sigstop: Sending sigstop to lwp 483
359.032470 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 484
359.032939 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 493
359.033349 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 508
359.033906 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 613
sigchld_handler
359.034551     [threads] send_sigstop: Sending sigstop to lwp 624
359.035002 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 655
sigchld_handler
359.035690     [threads] send_sigstop: Sending sigstop to lwp 660
359.035996 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 661
359.036403 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1074
359.036813 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1118
359.037288 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1293
359.037692 sigchld_handler
    [threads] wait_for_sigstop: pulling events
359.038090     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1293, ERRNO-OK
359.038400     [threads] wait_for_event_filtered: waitpid 1293 received SIGSTOP - Stopped (signal) (stopped)
359.039412     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.039696     [threads] get_pc: pc is 0x4e97c214
359.039967     [threads] filter_event: Expected stop.
359.040494     [threads] filter_event: SIGSTOP caught for LWP 316.1293 while stopping threads.
359.040736     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1118, ERRNO-OK
359.040988     [threads] wait_for_event_filtered: waitpid 1118 received SIGSTOP - Stopped (signal) (stopped)
359.041688     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.042009     [threads] get_pc: pc is 0x4e97c214
359.042262     [threads] filter_event: Expected stop.
359.042535     [threads] filter_event: SIGSTOP caught for LWP 316.1118 while stopping threads.
359.042811     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1074, ERRNO-OK
359.043181     [threads] wait_for_event_filtered: waitpid 1074 received SIGSTOP - Stopped (signal) (stopped)
359.043709     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.043983     [threads] get_pc: pc is 0x4e97c214
359.044246     [threads] filter_event: Expected stop.
359.044598     [threads] filter_event: SIGSTOP caught for LWP 316.1074 while stopping threads.
359.045005     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 661, ERRNO-OK
359.045297     [threads] wait_for_event_filtered: waitpid 661 received SIGSTOP - Stopped (signal) (stopped)
359.045728     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.046028     [threads] get_pc: pc is 0x4e97c216
359.046393     [threads] filter_event: Expected stop.
359.046662     [threads] filter_event: SIGSTOP caught for LWP 316.661 while stopping threads.
359.046936     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 660, ERRNO-OK
359.047276     [threads] wait_for_event_filtered: waitpid 660 received SIGSTOP - Stopped (signal) (stopped)
359.047935     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.048215     [threads] get_pc: pc is 0x4e97c216
359.048474     [threads] filter_event: Expected stop.
359.048896     [threads] filter_event: SIGSTOP caught for LWP 316.660 while stopping threads.
359.049178     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 655, ERRNO-OK
359.049463     [threads] wait_for_event_filtered: waitpid 655 received SIGSTOP - Stopped (signal) (stopped)
359.049909     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.050469     [threads] get_pc: pc is 0x4e97c214
359.050751     [threads] filter_event: Expected stop.
359.051021     [threads] filter_event: SIGSTOP caught for LWP 316.655 while stopping threads.
359.051283     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 624, ERRNO-OK
359.051796     [threads] wait_for_event_filtered: waitpid 624 received SIGSTOP - Stopped (signal) (stopped)
359.052259     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.052534     [threads] get_pc: pc is 0x4e97c214
359.052889     [threads] filter_event: Expected stop.
359.053218     [threads] filter_event: SIGSTOP caught for LWP 316.624 while stopping threads.
359.053495     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 613, ERRNO-OK
359.053786     [threads] wait_for_event_filtered: waitpid 613 received SIGSTOP - Stopped (signal) (stopped)
359.054203     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.054482     [threads] get_pc: pc is 0x4e97c216
359.054737     [threads] filter_event: Expected stop.
359.055005     [threads] filter_event: SIGSTOP caught for LWP 316.613 while stopping threads.
359.055263     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 508, ERRNO-OK
359.055547     [threads] wait_for_event_filtered: waitpid 508 received SIGSTOP - Stopped (signal) (stopped)
359.056243     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.056498     [threads] get_pc: pc is 0x4e97c216
359.056763     [threads] filter_event: Expected stop.
359.057034     [threads] filter_event: SIGSTOP caught for LWP 316.508 while stopping threads.
359.057300     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 493, ERRNO-OK
359.057584     [threads] wait_for_event_filtered: waitpid 493 received SIGSTOP - Stopped (signal) (stopped)
359.058138     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.058400     [threads] get_pc: pc is 0x4e97c214
359.058657     [threads] filter_event: Expected stop.
359.058998     [threads] filter_event: SIGSTOP caught for LWP 316.493 while stopping threads.
359.059267     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 484, ERRNO-OK
359.059555     [threads] wait_for_event_filtered: waitpid 484 received SIGSTOP - Stopped (signal) (stopped)
359.059990     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.060282     [threads] get_pc: pc is 0x4e97c216
359.060499     [threads] filter_event: Expected stop.
359.060771     [threads] filter_event: SIGSTOP caught for LWP 316.484 while stopping threads.
359.061054     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 483, ERRNO-OK
359.061350     [threads] wait_for_event_filtered: waitpid 483 received SIGSTOP - Stopped (signal) (stopped)
359.061809     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.062068     [threads] get_pc: pc is 0x4e97c216
359.062329     [threads] filter_event: Expected stop.
359.062576     [threads] filter_event: SIGSTOP caught for LWP 316.483 while stopping threads.
359.062853     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 437, ERRNO-OK
359.063134     [threads] wait_for_event_filtered: waitpid 437 received SIGSTOP - Stopped (signal) (stopped)
359.063562     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.063815     [threads] get_pc: pc is 0x4e97c216
359.064073     [threads] filter_event: Expected stop.
359.064326     [threads] filter_event: SIGSTOP caught for LWP 316.437 while stopping threads.
359.064606     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 436, ERRNO-OK
359.064889     [threads] wait_for_event_filtered: waitpid 436 received SIGSTOP - Stopped (signal) (stopped)
359.065311     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.065569     [threads] get_pc: pc is 0x4e97c214
359.065825     [threads] filter_event: Expected stop.
359.066086     [threads] filter_event: SIGSTOP caught for LWP 316.436 while stopping threads.
359.066369     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 433, ERRNO-OK
359.066634     [threads] wait_for_event_filtered: waitpid 433 received SIGSTOP - Stopped (signal) (stopped)
359.067054     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.067331     [threads] get_pc: pc is 0x4e97c216
359.067577     [threads] filter_event: Expected stop.
359.067838     [threads] filter_event: SIGSTOP caught for LWP 316.433 while stopping threads.
359.068116     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 414, ERRNO-OK
359.068392     [threads] wait_for_event_filtered: waitpid 414 received SIGSTOP - Stopped (signal) (stopped)
359.068802     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.069096     [threads] get_pc: pc is 0x4e97c216
359.069335     [threads] filter_event: Expected stop.
359.069602     [threads] filter_event: SIGSTOP caught for LWP 316.414 while stopping threads.
359.069881     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 412, ERRNO-OK
359.070221     [threads] wait_for_event_filtered: waitpid 412 received SIGSTOP - Stopped (signal) (stopped)
359.070662     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.070921     [threads] get_pc: pc is 0x4e97c216
359.071179     [threads] filter_event: Expected stop.
359.071416     [threads] filter_event: SIGSTOP caught for LWP 316.412 while stopping threads.
359.071661     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 411, ERRNO-OK
359.071902     [threads] wait_for_event_filtered: waitpid 411 received SIGSTOP - Stopped (signal) (stopped)
359.072268     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.072493     [threads] get_pc: pc is 0x4e97c214
359.072708     [threads] filter_event: Expected stop.
359.072924     [threads] filter_event: SIGSTOP caught for LWP 316.411 while stopping threads.
359.073307     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 409, ERRNO-OK
359.073568     [threads] wait_for_event_filtered: waitpid 409 received SIGSTOP - Stopped (signal) (stopped)
359.074043     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.074269     [threads] get_pc: pc is 0x4e97c216
359.074480     [threads] filter_event: Expected stop.
359.074701     [threads] filter_event: SIGSTOP caught for LWP 316.409 while stopping threads.
359.074941     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 408, ERRNO-OK
359.075179     [threads] wait_for_event_filtered: waitpid 408 received SIGSTOP - Stopped (signal) (stopped)
359.075537     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.075798     [threads] get_pc: pc is 0x4e97c216
359.076026     [threads] filter_event: Expected stop.
359.076262     [threads] filter_event: SIGSTOP caught for LWP 316.408 while stopping threads.
359.076553     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 407, ERRNO-OK
359.076819     [threads] wait_for_event_filtered: waitpid 407 received SIGSTOP - Stopped (signal) (stopped)
359.077380     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.077641     [threads] get_pc: pc is 0x4e97c214
359.077902     [threads] filter_event: Expected stop.
359.078163     [threads] filter_event: SIGSTOP caught for LWP 316.407 while stopping threads.
359.078452     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 406, ERRNO-OK
359.078739     [threads] wait_for_event_filtered: waitpid 406 received SIGSTOP - Stopped (signal) (stopped)
359.079147     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.079424     [threads] get_pc: pc is 0x4e97c216
359.079679     [threads] filter_event: Expected stop.
359.079928     [threads] filter_event: SIGSTOP caught for LWP 316.406 while stopping threads.
359.080286     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 405, ERRNO-OK
359.080766     [threads] wait_for_event_filtered: waitpid 405 received SIGSTOP - Stopped (signal) (stopped)
359.081203     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.081464     [threads] get_pc: pc is 0x4e97c216
359.081718     [threads] filter_event: Expected stop.
359.081983     [threads] filter_event: SIGSTOP caught for LWP 316.405 while stopping threads.
359.082273     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 404, ERRNO-OK
359.082541     [threads] wait_for_event_filtered: waitpid 404 received SIGSTOP - Stopped (signal) (stopped)
359.082960     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.083218     [threads] get_pc: pc is 0x4e97c216
359.083477     [threads] filter_event: Expected stop.
359.083739     [threads] filter_event: SIGSTOP caught for LWP 316.404 while stopping threads.
359.084026     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 403, ERRNO-OK
359.084293     [threads] wait_for_event_filtered: waitpid 403 received SIGSTOP - Stopped (signal) (stopped)
359.084706     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.084984     [threads] get_pc: pc is 0x4e97c216
359.085237     [threads] filter_event: Expected stop.
359.085483     [threads] filter_event: SIGSTOP caught for LWP 316.403 while stopping threads.
359.085768     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 401, ERRNO-OK
359.086054     [threads] wait_for_event_filtered: waitpid 401 received SIGSTOP - Stopped (signal) (stopped)
359.086473     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.086725     [threads] get_pc: pc is 0x4e97c216
359.086994     [threads] filter_event: Expected stop.
359.087246     [threads] filter_event: SIGSTOP caught for LWP 316.401 while stopping threads.
359.087534     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 400, ERRNO-OK
359.087816     [threads] wait_for_event_filtered: waitpid 400 received SIGSTOP - Stopped (signal) (stopped)
359.088233     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.088488     [threads] get_pc: pc is 0x4e97c214
359.088741     [threads] filter_event: Expected stop.
359.088985     [threads] filter_event: SIGSTOP caught for LWP 316.400 while stopping threads.
359.089436     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 399, ERRNO-OK
359.089697     [threads] wait_for_event_filtered: waitpid 399 received SIGSTOP - Stopped (signal) (stopped)
359.090159     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.090450     [threads] get_pc: pc is 0x4eb53d34
359.090706     [threads] filter_event: Expected stop.
359.090970     [threads] filter_event: SIGSTOP caught for LWP 316.399 while stopping threads.
359.091260     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 398, ERRNO-OK
359.091530     [threads] wait_for_event_filtered: waitpid 398 received SIGSTOP - Stopped (signal) (stopped)
359.091947     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.092203     [threads] get_pc: pc is 0x4e97c216
359.092458     [threads] filter_event: Expected stop.
359.092720     [threads] filter_event: SIGSTOP caught for LWP 316.398 while stopping threads.
359.093007     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 397, ERRNO-OK
359.093274     [threads] wait_for_event_filtered: waitpid 397 received SIGSTOP - Stopped (signal) (stopped)
359.093686     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.093957     [threads] get_pc: pc is 0x4e97c216
359.094200     [threads] filter_event: Expected stop.
359.094463     [threads] filter_event: SIGSTOP caught for LWP 316.397 while stopping threads.
359.094755     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 396, ERRNO-OK
359.095037     [threads] wait_for_event_filtered: waitpid 396 received SIGSTOP - Stopped (signal) (stopped)
359.095433     [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
359.095711     [threads] get_pc: pc is 0x4ea70c34
359.095965     [threads] filter_event: Expected stop.
359.096211     [threads] filter_event: SIGSTOP caught for LWP 316.396 while stopping threads.
359.096499     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 395, ERRNO-OK
359.097014     [threads] wait_for_event_filtered: waitpid 395 received SIGSTOP - Stopped (signal) (stopped)
359.097455     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.097726     [threads] get_pc: pc is 0x4e97c216
359.097977     [threads] filter_event: Expected stop.
359.098242     [threads] filter_event: SIGSTOP caught for LWP 316.395 while stopping threads.
359.098537     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 394, ERRNO-OK
359.098822     [threads] wait_for_event_filtered: waitpid 394 received SIGSTOP - Stopped (signal) (stopped)
359.099236     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.099507     [threads] get_pc: pc is 0x4e97c216
359.099748     [threads] filter_event: Expected stop.
359.100060     [threads] filter_event: SIGSTOP caught for LWP 316.394 while stopping threads.
359.100373     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 393, ERRNO-OK
359.100657     [threads] wait_for_event_filtered: waitpid 393 received SIGSTOP - Stopped (signal) (stopped)
359.101058     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.101334     [threads] get_pc: pc is 0x4eb53d34
359.101587     [threads] filter_event: Expected stop.
359.101832     [threads] filter_event: SIGSTOP caught for LWP 316.393 while stopping threads.
359.102127     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 392, ERRNO-OK
359.102410     [threads] wait_for_event_filtered: waitpid 392 received SIGSTOP - Stopped (signal) (stopped)
359.102818     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.103096     [threads] get_pc: pc is 0x4e97c216
359.103352     [threads] filter_event: Expected stop.
359.103598     [threads] filter_event: SIGSTOP caught for LWP 316.392 while stopping threads.
359.103893     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 391, ERRNO-OK
359.104180     [threads] wait_for_event_filtered: waitpid 391 received SIGSTOP - Stopped (signal) (stopped)
359.104591     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.104859     [threads] get_pc: pc is 0x4e97c216
359.105101     [threads] filter_event: Expected stop.
359.105369     [threads] filter_event: SIGSTOP caught for LWP 316.391 while stopping threads.
359.105661     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 390, ERRNO-OK
359.105944     [threads] wait_for_event_filtered: waitpid 390 received SIGSTOP - Stopped (signal) (stopped)
359.106351     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.106618     [threads] get_pc: pc is 0x4e97c216
359.107160     [threads] filter_event: Expected stop.
359.107399     [threads] filter_event: SIGSTOP caught for LWP 316.390 while stopping threads.
359.107712     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 389, ERRNO-OK
359.108000     [threads] wait_for_event_filtered: waitpid 389 received SIGSTOP - Stopped (signal) (stopped)
359.108440     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.108705     [threads] get_pc: pc is 0x4e97c216
359.108945     [threads] filter_event: Expected stop.
359.109207     [threads] filter_event: SIGSTOP caught for LWP 316.389 while stopping threads.
359.109509     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 388, ERRNO-OK
359.109788     [threads] wait_for_event_filtered: waitpid 388 received SIGSTOP - Stopped (signal) (stopped)
359.110229     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.110515     [threads] get_pc: pc is 0x4e97c216
359.110757     [threads] filter_event: Expected stop.
359.111018     [threads] filter_event: SIGSTOP caught for LWP 316.388 while stopping threads.
359.111317     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 387, ERRNO-OK
359.111607     [threads] wait_for_event_filtered: waitpid 387 received SIGSTOP - Stopped (signal) (stopped)
359.112012     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.112262     [threads] get_pc: pc is 0x4e97c216
359.112518     [threads] filter_event: Expected stop.
359.112781     [threads] filter_event: SIGSTOP caught for LWP 316.387 while stopping threads.
359.113073     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 386, ERRNO-OK
359.113337     [threads] wait_for_event_filtered: waitpid 386 received SIGSTOP - Stopped (signal) (stopped)
359.113743     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.113996     [threads] get_pc: pc is 0x4e97c216
359.114465     [threads] filter_event: Expected stop.
359.114750     [threads] filter_event: SIGSTOP caught for LWP 316.386 while stopping threads.
359.115053     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 385, ERRNO-OK
359.115341     [threads] wait_for_event_filtered: waitpid 385 received SIGSTOP - Stopped (signal) (stopped)
359.115864     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.116252     [threads] get_pc: pc is 0x4e97c216
359.116509     [threads] filter_event: Expected stop.
359.116874     [threads] filter_event: SIGSTOP caught for LWP 316.385 while stopping threads.
359.117179     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 384, ERRNO-OK
359.117465     [threads] wait_for_event_filtered: waitpid 384 received SIGSTOP - Stopped (signal) (stopped)
359.117893     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.118150     [threads] get_pc: pc is 0x4e97c216
359.118407     [threads] filter_event: Expected stop.
359.118653     [threads] filter_event: SIGSTOP caught for LWP 316.384 while stopping threads.
359.119089     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 383, ERRNO-OK
359.119379     [threads] wait_for_event_filtered: waitpid 383 received SIGSTOP - Stopped (signal) (stopped)
359.119788     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.120270     [threads] get_pc: pc is 0x4e97c214
359.120534     [threads] filter_event: Expected stop.
359.120801     [threads] filter_event: SIGSTOP caught for LWP 316.383 while stopping threads.
359.121103     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 382, ERRNO-OK
359.121371     [threads] wait_for_event_filtered: waitpid 382 received SIGSTOP - Stopped (signal) (stopped)
359.121782     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.122057     [threads] get_pc: pc is 0x4e97c216
359.122296     [threads] filter_event: Expected stop.
359.122554     [threads] filter_event: SIGSTOP caught for LWP 316.382 while stopping threads.
359.122853     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 381, ERRNO-OK
359.123139     [threads] wait_for_event_filtered: waitpid 381 received SIGSTOP - Stopped (signal) (stopped)
359.123524     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
359.123795     [threads] get_pc: pc is 0x4e9f6646
359.124053     [threads] filter_event: Expected stop.
359.124299     [threads] filter_event: SIGSTOP caught for LWP 316.381 while stopping threads.
359.124600     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 380, ERRNO-OK
359.124884     [threads] wait_for_event_filtered: waitpid 380 received SIGSTOP - Stopped (signal) (stopped)
359.125290     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.125540     [threads] get_pc: pc is 0x4e97c214
359.125783     [threads] filter_event: Expected stop.
359.126010     [threads] filter_event: SIGSTOP caught for LWP 316.380 while stopping threads.
359.126271     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 378, ERRNO-OK
359.126518     [threads] wait_for_event_filtered: waitpid 378 received SIGSTOP - Stopped (signal) (stopped)
359.126858     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.127079     [threads] get_pc: pc is 0x4e97c216
359.127291     [threads] filter_event: Expected stop.
359.127505     [threads] filter_event: SIGSTOP caught for LWP 316.378 while stopping threads.
359.127761     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 377, ERRNO-OK
359.128892     [threads] wait_for_event_filtered: waitpid 377 received SIGSTOP - Stopped (signal) (stopped)
359.129245     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.129481     [threads] get_pc: pc is 0x4e97c216
359.129690     [threads] filter_event: Expected stop.
359.129908     [threads] filter_event: SIGSTOP caught for LWP 316.377 while stopping threads.
359.130242     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 376, ERRNO-OK
359.130548     [threads] wait_for_event_filtered: waitpid 376 received SIGSTOP - Stopped (signal) (stopped)
359.131046     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.131388     [threads] get_pc: pc is 0x4e97c216
359.131647     [threads] filter_event: Expected stop.
359.131897     [threads] filter_event: SIGSTOP caught for LWP 316.376 while stopping threads.
359.132212     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 375, ERRNO-OK
359.132525     [threads] wait_for_event_filtered: waitpid 375 received SIGSTOP - Stopped (signal) (stopped)
359.132932     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.133197     [threads] get_pc: pc is 0x4e97c216
359.133445     [threads] filter_event: Expected stop.
359.133710     [threads] filter_event: SIGSTOP caught for LWP 316.375 while stopping threads.
359.134173     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 374, ERRNO-OK
359.134469     [threads] wait_for_event_filtered: waitpid 374 received SIGSTOP - Stopped (signal) (stopped)
359.134879     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.135132     [threads] get_pc: pc is 0x4e97c214
359.135387     [threads] filter_event: Expected stop.
359.135654     [threads] filter_event: SIGSTOP caught for LWP 316.374 while stopping threads.
359.135971     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 373, ERRNO-OK
359.136244     [threads] wait_for_event_filtered: waitpid 373 received SIGSTOP - Stopped (signal) (stopped)
359.136641     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.136915     [threads] get_pc: pc is 0x4e97c216
359.137155     [threads] filter_event: Expected stop.
359.137417     [threads] filter_event: SIGSTOP caught for LWP 316.373 while stopping threads.
359.137732     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 372, ERRNO-OK
359.138020     [threads] wait_for_event_filtered: waitpid 372 received SIGSTOP - Stopped (signal) (stopped)
359.138420     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.138878     [threads] get_pc: pc is 0x4e97c216
359.139154     [threads] filter_event: Expected stop.
359.139491     [threads] filter_event: SIGSTOP caught for LWP 316.372 while stopping threads.
359.139896     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 371, ERRNO-OK
359.140270     [threads] wait_for_event_filtered: waitpid 371 received SIGSTOP - Stopped (signal) (stopped)
359.140688     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.140962     [threads] get_pc: pc is 0x4e97c214
359.141384     [threads] filter_event: Expected stop.
359.141666     [threads] filter_event: SIGSTOP caught for LWP 316.371 while stopping threads.
359.141988     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 370, ERRNO-OK
359.142299     [threads] wait_for_event_filtered: waitpid 370 received SIGSTOP - Stopped (signal) (stopped)
359.142689     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.142968     [threads] get_pc: pc is 0x4e97c216
359.143400     [threads] filter_event: Expected stop.
359.143665     [threads] filter_event: SIGSTOP caught for LWP 316.370 while stopping threads.
359.144008     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 369, ERRNO-OK
359.144396     [threads] wait_for_event_filtered: waitpid 369 received SIGSTOP - Stopped (signal) (stopped)
359.144881     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.145167     [threads] get_pc: pc is 0x4e97c216
359.145408     [threads] filter_event: Expected stop.
359.145672     [threads] filter_event: SIGSTOP caught for LWP 316.369 while stopping threads.
359.146248     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 368, ERRNO-OK
359.146554     [threads] wait_for_event_filtered: waitpid 368 received SIGSTOP - Stopped (signal) (stopped)
359.146941     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.147417     [threads] get_pc: pc is 0x4eb53d34
359.147678     [threads] filter_event: Expected stop.
359.147928     [threads] filter_event: SIGSTOP caught for LWP 316.368 while stopping threads.
359.148265     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 367, ERRNO-OK
359.148689     [threads] wait_for_event_filtered: waitpid 367 received SIGSTOP - Stopped (signal) (stopped)
359.149103     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.149361     [threads] get_pc: pc is 0x4e97c214
359.149617     [threads] filter_event: Expected stop.
359.149875     [threads] filter_event: SIGSTOP caught for LWP 316.367 while stopping threads.
359.150280     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 366, ERRNO-OK
359.150576     [threads] wait_for_event_filtered: waitpid 366 received SIGSTOP - Stopped (signal) (stopped)
359.150959     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.151233     [threads] get_pc: pc is 0x4e97c216
359.151478     [threads] filter_event: Expected stop.
359.151743     [threads] filter_event: SIGSTOP caught for LWP 316.366 while stopping threads.
359.152074     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 365, ERRNO-OK
359.152366     [threads] wait_for_event_filtered: waitpid 365 received SIGSTOP - Stopped (signal) (stopped)
359.153152     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.153413     [threads] get_pc: pc is 0x4e97c216
359.153669     [threads] filter_event: Expected stop.
359.153930     [threads] filter_event: SIGSTOP caught for LWP 316.365 while stopping threads.
359.154354     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 364, ERRNO-OK
359.154771     [threads] wait_for_event_filtered: waitpid 364 received SIGSTOP - Stopped (signal) (stopped)
359.155151     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.155530     [threads] get_pc: pc is 0x4e97c216
359.155887     [threads] filter_event: Expected stop.
359.156154     [threads] filter_event: SIGSTOP caught for LWP 316.364 while stopping threads.
359.156471     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 361, ERRNO-OK
359.156764     [threads] wait_for_event_filtered: waitpid 361 received SIGSTOP - Stopped (signal) (stopped)
359.157137     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.157410     [threads] get_pc: pc is 0x4e97c214
359.157653     [threads] filter_event: Expected stop.
359.157912     [threads] filter_event: SIGSTOP caught for LWP 316.361 while stopping threads.
359.158451     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 360, ERRNO-OK
359.158749     [threads] wait_for_event_filtered: waitpid 360 received SIGSTOP - Stopped (signal) (stopped)
359.159148     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.159418     [threads] get_pc: pc is 0x4e97c216
359.159665     [threads] filter_event: Expected stop.
359.159932     [threads] filter_event: SIGSTOP caught for LWP 316.360 while stopping threads.
359.160445     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 359, ERRNO-OK
359.160745     [threads] wait_for_event_filtered: waitpid 359 received SIGSTOP - Stopped (signal) (stopped)
359.161270     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.161567     [threads] get_pc: pc is 0x4e97c216
359.161817     [threads] filter_event: Expected stop.
359.162085     [threads] filter_event: SIGSTOP caught for LWP 316.359 while stopping threads.
359.162411     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 358, ERRNO-OK
359.162708     [threads] wait_for_event_filtered: waitpid 358 received SIGSTOP - Stopped (signal) (stopped)
359.163088     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.163360     [threads] get_pc: pc is 0x4e97c216
359.163616     [threads] filter_event: Expected stop.
359.163885     [threads] filter_event: SIGSTOP caught for LWP 316.358 while stopping threads.
359.164206     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 357, ERRNO-OK
359.164496     [threads] wait_for_event_filtered: waitpid 357 received SIGSTOP - Stopped (signal) (stopped)
359.164872     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.165149     [threads] get_pc: pc is 0x4e97c216
359.165388     [threads] filter_event: Expected stop.
359.165647     [threads] filter_event: SIGSTOP caught for LWP 316.357 while stopping threads.
359.165963     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 352, ERRNO-OK
359.166256     [threads] wait_for_event_filtered: waitpid 352 received SIGSTOP - Stopped (signal) (stopped)
359.166645     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.166893     [threads] get_pc: pc is 0x4e97c216
359.167153     [threads] filter_event: Expected stop.
359.167402     [threads] filter_event: SIGSTOP caught for LWP 316.352 while stopping threads.
359.167736     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 351, ERRNO-OK
359.168007     [threads] wait_for_event_filtered: waitpid 351 received SIGSTOP - Stopped (signal) (stopped)
359.168494     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.168777     [threads] get_pc: pc is 0x4e97c216
359.169027     [threads] filter_event: Expected stop.
359.169372     [threads] filter_event: SIGSTOP caught for LWP 316.351 while stopping threads.
359.169712     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 350, ERRNO-OK
359.170053     [threads] wait_for_event_filtered: waitpid 350 received SIGSTOP - Stopped (signal) (stopped)
359.170446     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.170718     [threads] get_pc: pc is 0x4e97c214
359.170977     [threads] filter_event: Expected stop.
359.171247     [threads] filter_event: SIGSTOP caught for LWP 316.350 while stopping threads.
359.171575     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 349, ERRNO-OK
359.171869     [threads] wait_for_event_filtered: waitpid 349 received SIGSTOP - Stopped (signal) (stopped)
359.172238     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.172518     [threads] get_pc: pc is 0x4e97c214
359.172780     [threads] filter_event: Expected stop.
359.173029     [threads] filter_event: SIGSTOP caught for LWP 316.349 while stopping threads.
359.173370     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.174132     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
359.174830     [threads] operator(): leader_pid=3020, leader_lp!=NULL=1, num_lwps=1, zombie=0
359.175199     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
359.175530     [threads] stop_all_lwps: setting stopping_threads back to !stopping
359.175786   [threads] stop_all_lwps: exit
359.176109   [threads] operator(): [zyan1] operator() 3470, thread LWP 316.379, thread->last_resume_kind 1
359.176605   [threads] write_memory: Writing c0f2cf03 to 0x0045b45c in process 316
359.177129   [threads] operator(): [zyan1] operator() 3470, thread LWP 3020.3020, thread->last_resume_kind 2
359.177460   [threads] write_memory: Writing c0f2cf03 to 0x0045b45c in process 3020
359.177896   [threads] unstop_all_lwps: enter
359.178174     [threads] unstop_all_lwps: except=(LWP 410)
359.178422     [threads] proceed_one_lwp: lwp 316
359.178683     [threads] proceed_one_lwp:    LWP 316 has pending status, leaving stopped
359.179056     [threads] proceed_one_lwp: lwp 349
359.179324     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.179590     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.179925     [threads] resume_one_lwp_throw: Resuming lwp 349 (continue, signal 0, stop not expected)
359.180580     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.349
359.180998     [threads] proceed_one_lwp: lwp 350
359.181346     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.181566     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.181873     [threads] resume_one_lwp_throw: Resuming lwp 350 (continue, signal 0, stop not expected)
359.182344     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.350
359.182594     [threads] proceed_one_lwp: lwp 351
359.182824     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.183037     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.183250     [threads] resume_one_lwp_throw: Resuming lwp 351 (continue, signal 0, stop not expected)
359.183631     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.351
359.183879     [threads] proceed_one_lwp: lwp 352
359.184103     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.184322     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.184534     [threads] resume_one_lwp_throw: Resuming lwp 352 (continue, signal 0, stop not expected)
359.184974     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.352
359.185263     [threads] proceed_one_lwp: lwp 357
359.185508     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.185815     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.186077     [threads] resume_one_lwp_throw: Resuming lwp 357 (continue, signal 0, stop not expected)
359.186587     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.357
359.186868     [threads] proceed_one_lwp: lwp 358
359.187153     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.187415     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.187656     [threads] resume_one_lwp_throw: Resuming lwp 358 (continue, signal 0, stop not expected)
359.188311     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.358
359.188581     [threads] proceed_one_lwp: lwp 359
359.188861     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.189128     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.189516     [threads] resume_one_lwp_throw: Resuming lwp 359 (continue, signal 0, stop not expected)
359.189919     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.359
359.190363     [threads] proceed_one_lwp: lwp 360
359.190641     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.190997     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.191271     [threads] resume_one_lwp_throw: Resuming lwp 360 (continue, signal 0, stop not expected)
359.191669     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.360
359.192233     [threads] proceed_one_lwp: lwp 361
359.192518     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.192774     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.193011     [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
359.193414     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
359.193680     [threads] proceed_one_lwp: lwp 364
359.193945     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.194184     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.194438     [threads] resume_one_lwp_throw: Resuming lwp 364 (continue, signal 0, stop not expected)
359.194884     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.364
359.195174     [threads] proceed_one_lwp: lwp 365
359.195434     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.195694     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.195946     [threads] resume_one_lwp_throw: Resuming lwp 365 (continue, signal 0, stop not expected)
359.196393     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.365
359.196669     [threads] proceed_one_lwp: lwp 366
359.197140     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.197387     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.197638     [threads] resume_one_lwp_throw: Resuming lwp 366 (continue, signal 0, stop not expected)
359.198157     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.366
359.198435     [threads] proceed_one_lwp: lwp 367
359.198705     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.199028     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.199272     [threads] resume_one_lwp_throw: Resuming lwp 367 (continue, signal 0, stop not expected)
359.199837     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.367
359.200292     [threads] proceed_one_lwp: lwp 368
359.200581     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.200830     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
359.201084     [threads] resume_one_lwp_throw: Resuming lwp 368 (continue, signal 0, stop not expected)
359.201607     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.368
359.201902     [threads] proceed_one_lwp: lwp 369
359.202229     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.202491     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.202751     [threads] resume_one_lwp_throw: Resuming lwp 369 (continue, signal 0, stop not expected)
359.203133     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.369
359.203418     [threads] proceed_one_lwp: lwp 370
359.203794     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.204056     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.204436     [threads] resume_one_lwp_throw: Resuming lwp 370 (continue, signal 0, stop not expected)
359.204892     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.370
359.205163     [threads] proceed_one_lwp: lwp 371
359.205434     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.205906     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.206149     [threads] resume_one_lwp_throw: Resuming lwp 371 (continue, signal 0, stop not expected)
359.206691     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.371
359.207038     [threads] proceed_one_lwp: lwp 372
359.207306     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.207686     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.207931     [threads] resume_one_lwp_throw: Resuming lwp 372 (continue, signal 0, stop not expected)
359.208394     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.372
359.208670     [threads] proceed_one_lwp: lwp 373
359.209671     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.210136     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.210365     [threads] resume_one_lwp_throw: Resuming lwp 373 (continue, signal 0, stop not expected)
359.210867     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.373
359.211282     [threads] proceed_one_lwp: lwp 374
359.211565     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.211809     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.212067     [threads] resume_one_lwp_throw: Resuming lwp 374 (continue, signal 0, stop not expected)
359.212467     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.374
359.212735     [threads] proceed_one_lwp: lwp 375
359.213062     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.213309     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.213572     [threads] resume_one_lwp_throw: Resuming lwp 375 (continue, signal 0, stop not expected)
359.214043     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.375
359.214343     [threads] proceed_one_lwp: lwp 376
359.214602     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.214861     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.215099     [threads] resume_one_lwp_throw: Resuming lwp 376 (continue, signal 0, stop not expected)
359.215560     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.376
359.215841     [threads] proceed_one_lwp: lwp 377
359.216115     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.216375     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.216610     [threads] resume_one_lwp_throw: Resuming lwp 377 (continue, signal 0, stop not expected)
359.217002     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.377
359.217268     [threads] proceed_one_lwp: lwp 378
359.217545     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.217786     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.218038     [threads] resume_one_lwp_throw: Resuming lwp 378 (continue, signal 0, stop not expected)
359.218408     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.378
359.218692     [threads] proceed_one_lwp: lwp 379
359.218950     [threads] proceed_one_lwp:    LWP 379 has pending status, leaving stopped
359.219212     [threads] proceed_one_lwp: lwp 380
359.219464     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.219717     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.219967     [threads] resume_one_lwp_throw: Resuming lwp 380 (continue, signal 0, stop not expected)
359.220876     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.380
359.221157     [threads] proceed_one_lwp: lwp 381
359.221445     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
359.221693     [threads] resume_one_lwp_throw:   continue from pc 0x4e9f6646
359.221950     [threads] resume_one_lwp_throw: Resuming lwp 381 (continue, signal 0, stop not expected)
359.222414     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.381
359.222693     [threads] proceed_one_lwp: lwp 382
359.222962     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.223216     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.223456     [threads] resume_one_lwp_throw: Resuming lwp 382 (continue, signal 0, stop not expected)
359.223856     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.382
359.224123     [threads] proceed_one_lwp: lwp 383
359.224392     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.224654     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.224894     [threads] resume_one_lwp_throw: Resuming lwp 383 (continue, signal 0, stop not expected)
359.225288     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.383
359.225537     [threads] proceed_one_lwp: lwp 384
359.225764     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.225971     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.226182     [threads] resume_one_lwp_throw: Resuming lwp 384 (continue, signal 0, stop not expected)
359.226568     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.384
359.226897     [threads] proceed_one_lwp: lwp 385
359.227174     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.227414     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.227669     [threads] resume_one_lwp_throw: Resuming lwp 385 (continue, signal 0, stop not expected)
359.228283     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.385
359.228634     [threads] proceed_one_lwp: lwp 386
359.228897     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.229147     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.229404     [threads] resume_one_lwp_throw: Resuming lwp 386 (continue, signal 0, stop not expected)
359.229786     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.386
359.230131     [threads] proceed_one_lwp: lwp 387
359.230410     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.230670     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.231015     [threads] resume_one_lwp_throw: Resuming lwp 387 (continue, signal 0, stop not expected)
359.231465     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.387
359.231782     [threads] proceed_one_lwp: lwp 388
359.232039     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.232294     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.232547     [threads] resume_one_lwp_throw: Resuming lwp 388 (continue, signal 0, stop not expected)
359.232995     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.388
359.233272     [threads] proceed_one_lwp: lwp 389
359.233619     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.233867     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.234126     [threads] resume_one_lwp_throw: Resuming lwp 389 (continue, signal 0, stop not expected)
359.234577     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.389
359.234864     [threads] proceed_one_lwp: lwp 390
359.235092     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.235309     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.235526     [threads] resume_one_lwp_throw: Resuming lwp 390 (continue, signal 0, stop not expected)
359.235858     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.390
359.236100     [threads] proceed_one_lwp: lwp 391
359.236327     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.236538     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.236744     [threads] resume_one_lwp_throw: Resuming lwp 391 (continue, signal 0, stop not expected)
359.237111     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.391
359.237355     [threads] proceed_one_lwp: lwp 392
359.237579     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.237790     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.237999     [threads] resume_one_lwp_throw: Resuming lwp 392 (continue, signal 0, stop not expected)
359.238374     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.392
359.238613     [threads] proceed_one_lwp: lwp 393
359.238856     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.239070     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
359.239284     [threads] resume_one_lwp_throw: Resuming lwp 393 (continue, signal 0, stop not expected)
359.239638     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.393
359.240111     [threads] proceed_one_lwp: lwp 394
359.240395     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.240944     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.241217     [threads] resume_one_lwp_throw: Resuming lwp 394 (continue, signal 0, stop not expected)
359.241615     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.394
359.241896     [threads] proceed_one_lwp: lwp 395
359.242167     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.242424     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.242665     [threads] resume_one_lwp_throw: Resuming lwp 395 (continue, signal 0, stop not expected)
359.243059     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.395
359.243326     [threads] proceed_one_lwp: lwp 396
359.243583     [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
359.244099     [threads] resume_one_lwp_throw:   continue from pc 0x4ea70c34
359.244535     [threads] resume_one_lwp_throw: Resuming lwp 396 (continue, signal 0, stop not expected)
359.245054     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.396
359.245414     [threads] proceed_one_lwp: lwp 397
359.245799     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.246052     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.246292     [threads] resume_one_lwp_throw: Resuming lwp 397 (continue, signal 0, stop not expected)
359.246692     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.397
359.247025     [threads] proceed_one_lwp: lwp 398
359.247374     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.247634     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.247876     [threads] resume_one_lwp_throw: Resuming lwp 398 (continue, signal 0, stop not expected)
359.248276     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.398
359.248528     [threads] proceed_one_lwp: lwp 399
359.248796     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.249055     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
359.249305     [threads] resume_one_lwp_throw: Resuming lwp 399 (continue, signal 0, stop not expected)
359.249694     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.399
359.250228     [threads] proceed_one_lwp: lwp 400
359.250529     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.250778     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.251411     [threads] resume_one_lwp_throw: Resuming lwp 400 (continue, signal 0, stop not expected)
359.251862     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.400
359.252149     [threads] proceed_one_lwp: lwp 401
359.252411     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.252785     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.253040     [threads] resume_one_lwp_throw: Resuming lwp 401 (continue, signal 0, stop not expected)
359.253439     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.401
359.253732     [threads] proceed_one_lwp: lwp 403
359.253989     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.254255     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.254497     [threads] resume_one_lwp_throw: Resuming lwp 403 (continue, signal 0, stop not expected)
359.254950     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.403
359.255240     [threads] proceed_one_lwp: lwp 404
359.255514     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.255775     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.256015     [threads] resume_one_lwp_throw: Resuming lwp 404 (continue, signal 0, stop not expected)
359.256657     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.404
359.257172     [threads] proceed_one_lwp: lwp 405
359.257475     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.257738     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.258107     [threads] resume_one_lwp_throw: Resuming lwp 405 (continue, signal 0, stop not expected)
359.258511     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.405
359.258805     [threads] proceed_one_lwp: lwp 406
359.259064     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.259330     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.259583     [threads] resume_one_lwp_throw: Resuming lwp 406 (continue, signal 0, stop not expected)
359.260189     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.406
359.260484     [threads] proceed_one_lwp: lwp 407
359.260747     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.261007     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.261265     [threads] resume_one_lwp_throw: Resuming lwp 407 (continue, signal 0, stop not expected)
359.261832     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.407
359.262108     [threads] proceed_one_lwp: lwp 408
359.262380     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.262628     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.263022     [threads] resume_one_lwp_throw: Resuming lwp 408 (continue, signal 0, stop not expected)
359.270385     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.408
359.270505     [threads] proceed_one_lwp: lwp 409
359.270607     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.270680     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.270762     [threads] resume_one_lwp_throw: Resuming lwp 409 (continue, signal 0, stop not expected)
359.271750     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.409
359.273182     [threads] proceed_one_lwp: lwp 411
359.274877     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.275138     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.275358     [threads] resume_one_lwp_throw: Resuming lwp 411 (continue, signal 0, stop not expected)
359.276029     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.411
359.276859     [threads] proceed_one_lwp: lwp 412
359.277664     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.278172     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.278845     [threads] resume_one_lwp_throw: Resuming lwp 412 (continue, signal 0, stop not expected)
359.280208     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.412
359.280480     [threads] proceed_one_lwp: lwp 414
359.280977     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.281752     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.282128     [threads] resume_one_lwp_throw: Resuming lwp 414 (continue, signal 0, stop not expected)
359.282485     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.414
359.283511     [threads] proceed_one_lwp: lwp 433
359.283752     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.283970     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.284187     [threads] resume_one_lwp_throw: Resuming lwp 433 (continue, signal 0, stop not expected)
359.285324     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.433
359.285583     [threads] proceed_one_lwp: lwp 436
359.285815     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.286711     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.286931     [threads] resume_one_lwp_throw: Resuming lwp 436 (continue, signal 0, stop not expected)
359.287330     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.436
359.287581     [threads] proceed_one_lwp: lwp 437
359.287812     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.288029     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.288243     [threads] resume_one_lwp_throw: Resuming lwp 437 (continue, signal 0, stop not expected)
359.288624     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.437
359.288870     [threads] proceed_one_lwp: lwp 483
359.289226     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.289465     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.289683     [threads] resume_one_lwp_throw: Resuming lwp 483 (continue, signal 0, stop not expected)
359.290091     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.483
359.290391     [threads] proceed_one_lwp: lwp 484
359.290622     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.290840     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.291055     [threads] resume_one_lwp_throw: Resuming lwp 484 (continue, signal 0, stop not expected)
359.291375     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.484
359.291608     [threads] proceed_one_lwp: lwp 493
359.291827     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.292032     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.292233     [threads] resume_one_lwp_throw: Resuming lwp 493 (continue, signal 0, stop not expected)
359.292554     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.493
359.292786     [threads] proceed_one_lwp: lwp 508
359.293007     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.293217     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.293420     [threads] resume_one_lwp_throw: Resuming lwp 508 (continue, signal 0, stop not expected)
359.293748     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.508
359.294051     [threads] proceed_one_lwp: lwp 613
359.294290     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.294501     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.294750     [threads] resume_one_lwp_throw: Resuming lwp 613 (continue, signal 0, stop not expected)
359.295451     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.613
359.295731     [threads] proceed_one_lwp: lwp 624
359.295969     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.296189     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.296403     [threads] resume_one_lwp_throw: Resuming lwp 624 (continue, signal 0, stop not expected)
359.296747     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.624
359.297030     [threads] proceed_one_lwp: lwp 655
359.297261     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.297476     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.297846     [threads] resume_one_lwp_throw: Resuming lwp 655 (continue, signal 0, stop not expected)
359.298241     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.655
359.298490     [threads] proceed_one_lwp: lwp 660
359.298807     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.299041     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.299262     [threads] resume_one_lwp_throw: Resuming lwp 660 (continue, signal 0, stop not expected)
359.299605     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.660
359.299858     [threads] proceed_one_lwp: lwp 661
359.300170     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.300398     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
359.300610     [threads] resume_one_lwp_throw: Resuming lwp 661 (continue, signal 0, stop not expected)
359.300952     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.661
359.301204     [threads] proceed_one_lwp: lwp 1074
359.301430     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.301645     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.301857     [threads] resume_one_lwp_throw: Resuming lwp 1074 (continue, signal 0, stop not expected)
359.302195     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1074
359.302483     [threads] proceed_one_lwp: lwp 1118
359.302713     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.302929     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.303141     [threads] resume_one_lwp_throw: Resuming lwp 1118 (continue, signal 0, stop not expected)
359.303476     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1118
359.303738     [threads] proceed_one_lwp: lwp 1293
359.304030     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.304259     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.304555     [threads] resume_one_lwp_throw: Resuming lwp 1293 (continue, signal 0, stop not expected)
359.304947     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1293
359.305195     [threads] proceed_one_lwp: lwp 2999
359.305414     [threads] proceed_one_lwp:    LWP 2999 has pending status, leaving stopped
359.305627     [threads] proceed_one_lwp: lwp 3020
359.305832     [threads] proceed_one_lwp:    client wants LWP to remain 3020 stopped
359.306041   [threads] unstop_all_lwps: exit
359.306249   [threads] stop_all_lwps: enter
359.306460     [threads] stop_all_lwps: stop, except=none
359.306669     [threads] send_sigstop: Sending sigstop to lwp 349
sigchld_handler
359.307195     [threads] send_sigstop: Sending sigstop to lwp 350
sigchld_handler
359.307623     [threads] send_sigstop: Sending sigstop to lwp 351
sigchld_handler
359.308026     [threads] send_sigstop: Sending sigstop to lwp 352
sigchld_handler
359.308424     [threads] send_sigstop: Sending sigstop to lwp 357
359.308672 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 358
sigchld_handler
359.309260     [threads] send_sigstop: Sending sigstop to lwp 359
359.309566 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 360
359.309958 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 361
359.310422     [threads] send_sigstop: Sending sigstop to lwp 364
sigchld_handler
359.310838     [threads] send_sigstop: Sending sigstop to lwp 365
sigchld_handler
359.311238     [threads] send_sigstop: Sending sigstop to lwp 366
359.311482 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 367
sigchld_handler
359.312178     [threads] send_sigstop: Sending sigstop to lwp 368
359.312481 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 369
359.313052 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 370
sigchld_handler
359.313657     [threads] send_sigstop: Sending sigstop to lwp 371
sigchld_handler
359.314198     [threads] send_sigstop: Sending sigstop to lwp 372
359.314446 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 373
sigchld_handler
359.315036     [threads] send_sigstop: Sending sigstop to lwp 374
359.315343 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 375
sigchld_handler
359.315973     [threads] send_sigstop: Sending sigstop to lwp 376
sigchld_handler
359.316458     [threads] send_sigstop: Sending sigstop to lwp 377
359.316713 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 378
359.317136     [threads] send_sigstop: Sending sigstop to lwp 380
359.317385 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 381
sigchld_handler
359.318023     [threads] send_sigstop: Sending sigstop to lwp 382
359.318270 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 383
359.318663 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 384
359.319032 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 385
359.319391 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 386
359.319731 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 387
sigchld_handler
359.320772     [threads] send_sigstop: Sending sigstop to lwp 388
sigchld_handler
359.321222     [threads] send_sigstop: Sending sigstop to lwp 389
sigchld_handler
359.321636     [threads] send_sigstop: Sending sigstop to lwp 390
359.321899 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 391
sigchld_handler
359.322412     [threads] send_sigstop: Sending sigstop to lwp 392
sigchld_handler
359.322978     [threads] send_sigstop: Sending sigstop to lwp 393
359.323227     [threads] send_sigstop: Sending sigstop to lwp 394
359.323472 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 395
359.324010 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 396
359.324409 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 397
359.324803 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 398
359.325162 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 399
359.325555 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 400
359.325935 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 401
359.326286 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 403
sigchld_handler
359.326787     [threads] send_sigstop: Sending sigstop to lwp 404
sigchld_handler
359.327191     [threads] send_sigstop: Sending sigstop to lwp 405
359.327440 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 406
359.327830 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 407
359.328211 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 408
sigchld_handler
359.328719     [threads] send_sigstop: Sending sigstop to lwp 409
359.328965 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 411
359.329355 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 412
359.329754 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 414
359.330215 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 433
359.330790 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 436
sigchld_handler
359.331407     [threads] send_sigstop: Sending sigstop to lwp 437
sigchld_handler
359.331885     [threads] send_sigstop: Sending sigstop to lwp 483
359.332190 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 484
sigchld_handler
359.332741     [threads] send_sigstop: Sending sigstop to lwp 493
359.333228     [threads] send_sigstop: Sending sigstop to lwp 508
359.333525 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 613
sigchld_handler
sigchld_handler
359.334501     [threads] send_sigstop: Sending sigstop to lwp 624
359.334819 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 655
sigchld_handler
359.335605     [threads] send_sigstop: Sending sigstop to lwp 660
359.335901 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 661
359.336525 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1074
359.336942 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1118
359.337413 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1293
sigchld_handler
359.338103     [threads] wait_for_sigstop: pulling events
359.338391     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1293, ERRNO-OK
359.338694     [threads] wait_for_event_filtered: waitpid 1293 received SIGSTOP - Stopped (signal) (stopped)
359.339226     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.339509     [threads] get_pc: pc is 0x4e97c214
359.339840     [threads] filter_event: Expected stop.
359.340157     [threads] filter_event: SIGSTOP caught for LWP 316.1293 while stopping threads.
359.340397     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1118, ERRNO-OK
359.340779     [threads] wait_for_event_filtered: waitpid 1118 received SIGSTOP - Stopped (signal) (stopped)
359.341183     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.341467     [threads] get_pc: pc is 0x4e97c214
359.341717     [threads] filter_event: Expected stop.
359.341989     [threads] filter_event: SIGSTOP caught for LWP 316.1118 while stopping threads.
359.342267     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1074, ERRNO-OK
359.342556     [threads] wait_for_event_filtered: waitpid 1074 received SIGSTOP - Stopped (signal) (stopped)
359.342996     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.343200     [threads] get_pc: pc is 0x4e97c214
359.343436     [threads] filter_event: Expected stop.
359.343689     [threads] filter_event: SIGSTOP caught for LWP 316.1074 while stopping threads.
359.343970     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 661, ERRNO-OK
359.344234     [threads] wait_for_event_filtered: waitpid 661 received SIGSTOP - Stopped (signal) (stopped)
359.344803     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.345043     [threads] get_pc: pc is 0x4e97c216
359.345258     [threads] filter_event: Expected stop.
359.345473     [threads] filter_event: SIGSTOP caught for LWP 316.661 while stopping threads.
359.345702     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 660, ERRNO-OK
359.345937     [threads] wait_for_event_filtered: waitpid 660 received SIGSTOP - Stopped (signal) (stopped)
359.346611     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.346842     [threads] get_pc: pc is 0x4e97c216
359.347054     [threads] filter_event: Expected stop.
359.347275     [threads] filter_event: SIGSTOP caught for LWP 316.660 while stopping threads.
359.347508     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 655, ERRNO-OK
359.347745     [threads] wait_for_event_filtered: waitpid 655 received SIGSTOP - Stopped (signal) (stopped)
359.348111     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.348338     [threads] get_pc: pc is 0x4e97c214
359.348603     [threads] filter_event: Expected stop.
359.348841     [threads] filter_event: SIGSTOP caught for LWP 316.655 while stopping threads.
359.349207     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 624, ERRNO-OK
359.349505     [threads] wait_for_event_filtered: waitpid 624 received SIGSTOP - Stopped (signal) (stopped)
359.349925     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.350273     [threads] get_pc: pc is 0x4e97c214
359.350528     [threads] filter_event: Expected stop.
359.350796     [threads] filter_event: SIGSTOP caught for LWP 316.624 while stopping threads.
359.351069     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 613, ERRNO-OK
359.351516     [threads] wait_for_event_filtered: waitpid 613 received SIGSTOP - Stopped (signal) (stopped)
359.352037     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.352297     [threads] get_pc: pc is 0x4e97c216
359.352555     [threads] filter_event: Expected stop.
359.352820     [threads] filter_event: SIGSTOP caught for LWP 316.613 while stopping threads.
359.353096     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 508, ERRNO-OK
359.353369     [threads] wait_for_event_filtered: waitpid 508 received SIGSTOP - Stopped (signal) (stopped)
359.353869     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.354210     [threads] get_pc: pc is 0x4e97c216
359.354458     [threads] filter_event: Expected stop.
359.354722     [threads] filter_event: SIGSTOP caught for LWP 316.508 while stopping threads.
359.354999     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 493, ERRNO-OK
359.355283     [threads] wait_for_event_filtered: waitpid 493 received SIGSTOP - Stopped (signal) (stopped)
359.355692     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.355972     [threads] get_pc: pc is 0x4eb53d34
359.356367     [threads] filter_event: Expected stop.
359.356654     [threads] filter_event: SIGSTOP caught for LWP 316.493 while stopping threads.
359.356940     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 484, ERRNO-OK
359.357306     [threads] wait_for_event_filtered: waitpid 484 received SIGSTOP - Stopped (signal) (stopped)
359.357733     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.358016     [threads] get_pc: pc is 0x4e97c216
359.358509     [threads] filter_event: Expected stop.
359.358771     [threads] filter_event: SIGSTOP caught for LWP 316.484 while stopping threads.
359.359059     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 483, ERRNO-OK
359.359452     [threads] wait_for_event_filtered: waitpid 483 received SIGSTOP - Stopped (signal) (stopped)
359.359986     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.360421     [threads] get_pc: pc is 0x4e97c216
359.360652     [threads] filter_event: Expected stop.
359.360883     [threads] filter_event: SIGSTOP caught for LWP 316.483 while stopping threads.
359.361172     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 437, ERRNO-OK
359.361582     [threads] wait_for_event_filtered: waitpid 437 received SIGSTOP - Stopped (signal) (stopped)
359.362009     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.362290     [threads] get_pc: pc is 0x4e97c216
359.362547     [threads] filter_event: Expected stop.
359.362806     [threads] filter_event: SIGSTOP caught for LWP 316.437 while stopping threads.
359.363072     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 436, ERRNO-OK
359.363353     [threads] wait_for_event_filtered: waitpid 436 received SIGSTOP - Stopped (signal) (stopped)
359.363775     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.364182     [threads] get_pc: pc is 0x4e97c214
359.364447     [threads] filter_event: Expected stop.
359.364696     [threads] filter_event: SIGSTOP caught for LWP 316.436 while stopping threads.
359.365118     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 433, ERRNO-OK
359.365405     [threads] wait_for_event_filtered: waitpid 433 received SIGSTOP - Stopped (signal) (stopped)
359.365821     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.365990     [threads] get_pc: pc is 0x4e97c216
359.366067     [threads] filter_event: Expected stop.
359.366222     [threads] filter_event: SIGSTOP caught for LWP 316.433 while stopping threads.
359.366323     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 414, ERRNO-OK
359.366441     [threads] wait_for_event_filtered: waitpid 414 received SIGSTOP - Stopped (signal) (stopped)
359.366656     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.366815     [threads] get_pc: pc is 0x4e97c216
359.367064     [threads] filter_event: Expected stop.
359.367330     [threads] filter_event: SIGSTOP caught for LWP 316.414 while stopping threads.
359.367628     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 412, ERRNO-OK
359.367916     [threads] wait_for_event_filtered: waitpid 412 received SIGSTOP - Stopped (signal) (stopped)
359.368323     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.368935     [threads] get_pc: pc is 0x4e97c216
359.369177     [threads] filter_event: Expected stop.
359.369444     [threads] filter_event: SIGSTOP caught for LWP 316.412 while stopping threads.
359.369799     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 411, ERRNO-OK
359.370247     [threads] wait_for_event_filtered: waitpid 411 received SIGSTOP - Stopped (signal) (stopped)
359.370697     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.370953     [threads] get_pc: pc is 0x4e97c214
359.371358     [threads] filter_event: Expected stop.
359.371626     [threads] filter_event: SIGSTOP caught for LWP 316.411 while stopping threads.
359.371910     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 409, ERRNO-OK
359.372314     [threads] wait_for_event_filtered: waitpid 409 received SIGSTOP - Stopped (signal) (stopped)
359.372736     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.372918     [threads] get_pc: pc is 0x4e97c216
359.373161     [threads] filter_event: Expected stop.
359.373422     [threads] filter_event: SIGSTOP caught for LWP 316.409 while stopping threads.
359.373824     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 408, ERRNO-OK
359.374090     [threads] wait_for_event_filtered: waitpid 408 received SIGSTOP - Stopped (signal) (stopped)
359.374509     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.374768     [threads] get_pc: pc is 0x4e97c216
359.375024     [threads] filter_event: Expected stop.
359.375384     [threads] filter_event: SIGSTOP caught for LWP 316.408 while stopping threads.
359.375680     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 407, ERRNO-OK
359.376080     [threads] wait_for_event_filtered: waitpid 407 received SIGSTOP - Stopped (signal) (stopped)
359.376564     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.376841     [threads] get_pc: pc is 0x4e97c214
359.377083     [threads] filter_event: Expected stop.
359.377416     [threads] filter_event: SIGSTOP caught for LWP 316.407 while stopping threads.
359.377700     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 406, ERRNO-OK
359.377991     [threads] wait_for_event_filtered: waitpid 406 received SIGSTOP - Stopped (signal) (stopped)
359.378415     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.378664     [threads] get_pc: pc is 0x4e97c216
359.378924     [threads] filter_event: Expected stop.
359.379170     [threads] filter_event: SIGSTOP caught for LWP 316.406 while stopping threads.
359.379459     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 405, ERRNO-OK
359.379740     [threads] wait_for_event_filtered: waitpid 405 received SIGSTOP - Stopped (signal) (stopped)
359.380416     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.380665     [threads] get_pc: pc is 0x4e97c216
359.380932     [threads] filter_event: Expected stop.
359.381393     [threads] filter_event: SIGSTOP caught for LWP 316.405 while stopping threads.
359.381678     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 404, ERRNO-OK
359.381973     [threads] wait_for_event_filtered: waitpid 404 received SIGSTOP - Stopped (signal) (stopped)
359.382399     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.382653     [threads] get_pc: pc is 0x4e97c216
359.382909     [threads] filter_event: Expected stop.
359.383174     [threads] filter_event: SIGSTOP caught for LWP 316.404 while stopping threads.
359.383461     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 403, ERRNO-OK
359.383747     [threads] wait_for_event_filtered: waitpid 403 received SIGSTOP - Stopped (signal) (stopped)
359.384144     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.384422     [threads] get_pc: pc is 0x4e97c216
359.384887     [threads] filter_event: Expected stop.
359.385160     [threads] filter_event: SIGSTOP caught for LWP 316.403 while stopping threads.
359.385450     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 401, ERRNO-OK
359.385822     [threads] wait_for_event_filtered: waitpid 401 received SIGSTOP - Stopped (signal) (stopped)
359.386515     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.386777     [threads] get_pc: pc is 0x4e97c216
359.387052     [threads] filter_event: Expected stop.
359.387355     [threads] filter_event: SIGSTOP caught for LWP 316.401 while stopping threads.
359.387469     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 400, ERRNO-OK
359.387573     [threads] wait_for_event_filtered: waitpid 400 received SIGSTOP - Stopped (signal) (stopped)
359.387796     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.387915     [threads] get_pc: pc is 0x4e97c214
359.387989     [threads] filter_event: Expected stop.
359.388068     [threads] filter_event: SIGSTOP caught for LWP 316.400 while stopping threads.
359.388167     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 399, ERRNO-OK
359.388257     [threads] wait_for_event_filtered: waitpid 399 received SIGSTOP - Stopped (signal) (stopped)
359.388454     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.388570     [threads] get_pc: pc is 0x4eb53d34
359.388760     [threads] filter_event: Expected stop.
359.389008     [threads] filter_event: SIGSTOP caught for LWP 316.399 while stopping threads.
359.389306     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 398, ERRNO-OK
359.389727     [threads] wait_for_event_filtered: waitpid 398 received SIGSTOP - Stopped (signal) (stopped)
359.390195     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.390475     [threads] get_pc: pc is 0x4e97c216
359.390717     [threads] filter_event: Expected stop.
359.391063     [threads] filter_event: SIGSTOP caught for LWP 316.398 while stopping threads.
359.391363     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 397, ERRNO-OK
359.391651     [threads] wait_for_event_filtered: waitpid 397 received SIGSTOP - Stopped (signal) (stopped)
359.392070     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.392339     [threads] get_pc: pc is 0x4e97c216
359.392584     [threads] filter_event: Expected stop.
359.392847     [threads] filter_event: SIGSTOP caught for LWP 316.397 while stopping threads.
359.393139     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 396, ERRNO-OK
359.393424     [threads] wait_for_event_filtered: waitpid 396 received SIGSTOP - Stopped (signal) (stopped)
359.393843     [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
359.394277     [threads] get_pc: pc is 0x4ea70c34
359.394648     [threads] filter_event: Expected stop.
359.394899     [threads] filter_event: SIGSTOP caught for LWP 316.396 while stopping threads.
359.395195     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 395, ERRNO-OK
359.395586     [threads] wait_for_event_filtered: waitpid 395 received SIGSTOP - Stopped (signal) (stopped)
359.396097     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.396374     [threads] get_pc: pc is 0x4e97c216
359.396637     [threads] filter_event: Expected stop.
359.396896     [threads] filter_event: SIGSTOP caught for LWP 316.395 while stopping threads.
359.397259     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 394, ERRNO-OK
359.397688     [threads] wait_for_event_filtered: waitpid 394 received SIGSTOP - Stopped (signal) (stopped)
359.398087     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.398350     [threads] get_pc: pc is 0x4e97c216
359.398420     [threads] filter_event: Expected stop.
359.398487     [threads] filter_event: SIGSTOP caught for LWP 316.394 while stopping threads.
359.398588     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 393, ERRNO-OK
359.398667     [threads] wait_for_event_filtered: waitpid 393 received SIGSTOP - Stopped (signal) (stopped)
359.398850     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.398914     [threads] get_pc: pc is 0x4eb53d34
359.398966     [threads] filter_event: Expected stop.
359.399024     [threads] filter_event: SIGSTOP caught for LWP 316.393 while stopping threads.
359.399112     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 392, ERRNO-OK
359.399186     [threads] wait_for_event_filtered: waitpid 392 received SIGSTOP - Stopped (signal) (stopped)
359.399359     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.399419     [threads] get_pc: pc is 0x4e97c216
359.399472     [threads] filter_event: Expected stop.
359.399531     [threads] filter_event: SIGSTOP caught for LWP 316.392 while stopping threads.
359.399736     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 391, ERRNO-OK
359.399813     [threads] wait_for_event_filtered: waitpid 391 received SIGSTOP - Stopped (signal) (stopped)
359.399989     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.400111     [threads] get_pc: pc is 0x4e97c216
359.400167     [threads] filter_event: Expected stop.
359.400227     [threads] filter_event: SIGSTOP caught for LWP 316.391 while stopping threads.
359.400320     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 390, ERRNO-OK
359.400393     [threads] wait_for_event_filtered: waitpid 390 received SIGSTOP - Stopped (signal) (stopped)
359.400565     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.400627     [threads] get_pc: pc is 0x4e97c216
359.400679     [threads] filter_event: Expected stop.
359.400738     [threads] filter_event: SIGSTOP caught for LWP 316.390 while stopping threads.
359.400824     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 389, ERRNO-OK
359.400894     [threads] wait_for_event_filtered: waitpid 389 received SIGSTOP - Stopped (signal) (stopped)
359.401061     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.401122     [threads] get_pc: pc is 0x4e97c216
359.401174     [threads] filter_event: Expected stop.
359.401233     [threads] filter_event: SIGSTOP caught for LWP 316.389 while stopping threads.
359.401323     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 388, ERRNO-OK
359.401391     [threads] wait_for_event_filtered: waitpid 388 received SIGSTOP - Stopped (signal) (stopped)
359.401558     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.401618     [threads] get_pc: pc is 0x4e97c216
359.401672     [threads] filter_event: Expected stop.
359.401730     [threads] filter_event: SIGSTOP caught for LWP 316.388 while stopping threads.
359.401820     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 387, ERRNO-OK
359.401890     [threads] wait_for_event_filtered: waitpid 387 received SIGSTOP - Stopped (signal) (stopped)
359.402147     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.402249     [threads] get_pc: pc is 0x4e97c216
359.402470     [threads] filter_event: Expected stop.
359.402690     [threads] filter_event: SIGSTOP caught for LWP 316.387 while stopping threads.
359.402949     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 386, ERRNO-OK
359.403231     [threads] wait_for_event_filtered: waitpid 386 received SIGSTOP - Stopped (signal) (stopped)
359.403637     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.403990     [threads] get_pc: pc is 0x4e97c216
359.404261     [threads] filter_event: Expected stop.
359.404721     [threads] filter_event: SIGSTOP caught for LWP 316.386 while stopping threads.
359.405035     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 385, ERRNO-OK
359.405450     [threads] wait_for_event_filtered: waitpid 385 received SIGSTOP - Stopped (signal) (stopped)
359.405851     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.406129     [threads] get_pc: pc is 0x4e97c216
359.406503     [threads] filter_event: Expected stop.
359.406755     [threads] filter_event: SIGSTOP caught for LWP 316.385 while stopping threads.
359.407211     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 384, ERRNO-OK
359.407505     [threads] wait_for_event_filtered: waitpid 384 received SIGSTOP - Stopped (signal) (stopped)
359.408009     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.408289     [threads] get_pc: pc is 0x4e97c216
359.408549     [threads] filter_event: Expected stop.
359.408813     [threads] filter_event: SIGSTOP caught for LWP 316.384 while stopping threads.
359.409184     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 383, ERRNO-OK
359.409487     [threads] wait_for_event_filtered: waitpid 383 received SIGSTOP - Stopped (signal) (stopped)
359.409881     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.410244     [threads] get_pc: pc is 0x4e97c214
359.410503     [threads] filter_event: Expected stop.
359.410751     [threads] filter_event: SIGSTOP caught for LWP 316.383 while stopping threads.
359.411244     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 382, ERRNO-OK
359.411659     [threads] wait_for_event_filtered: waitpid 382 received SIGSTOP - Stopped (signal) (stopped)
359.412081     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.412338     [threads] get_pc: pc is 0x4e97c216
359.412692     [threads] filter_event: Expected stop.
359.412957     [threads] filter_event: SIGSTOP caught for LWP 316.382 while stopping threads.
359.413326     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 381, ERRNO-OK
359.413619     [threads] wait_for_event_filtered: waitpid 381 received SIGSTOP - Stopped (signal) (stopped)
359.414003     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
359.414194     [threads] get_pc: pc is 0x4e9f6646
359.414438     [threads] filter_event: Expected stop.
359.414803     [threads] filter_event: SIGSTOP caught for LWP 316.381 while stopping threads.
359.415105     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 380, ERRNO-OK
359.415395     [threads] wait_for_event_filtered: waitpid 380 received SIGSTOP - Stopped (signal) (stopped)
359.416008     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.416259     [threads] get_pc: pc is 0x4e97c214
359.416522     [threads] filter_event: Expected stop.
359.416868     [threads] filter_event: SIGSTOP caught for LWP 316.380 while stopping threads.
359.417194     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 378, ERRNO-OK
359.417592     [threads] wait_for_event_filtered: waitpid 378 received SIGSTOP - Stopped (signal) (stopped)
359.418110     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.418365     [threads] get_pc: pc is 0x4e97c216
359.418618     [threads] filter_event: Expected stop.
359.418978     [threads] filter_event: SIGSTOP caught for LWP 316.378 while stopping threads.
359.419290     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 377, ERRNO-OK
359.419722     [threads] wait_for_event_filtered: waitpid 377 received SIGSTOP - Stopped (signal) (stopped)
359.420159     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.420628     [threads] get_pc: pc is 0x4e97c216
359.420883     [threads] filter_event: Expected stop.
359.421148     [threads] filter_event: SIGSTOP caught for LWP 316.377 while stopping threads.
359.421519     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 376, ERRNO-OK
359.421817     [threads] wait_for_event_filtered: waitpid 376 received SIGSTOP - Stopped (signal) (stopped)
359.422202     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.422489     [threads] get_pc: pc is 0x4e97c216
359.422731     [threads] filter_event: Expected stop.
359.422995     [threads] filter_event: SIGSTOP caught for LWP 316.376 while stopping threads.
359.423299     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 375, ERRNO-OK
359.423659     [threads] wait_for_event_filtered: waitpid 375 received SIGSTOP - Stopped (signal) (stopped)
359.424135     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.424398     [threads] get_pc: pc is 0x4e97c216
359.424656     [threads] filter_event: Expected stop.
359.425034     [threads] filter_event: SIGSTOP caught for LWP 316.375 while stopping threads.
359.425348     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 374, ERRNO-OK
359.425696     [threads] wait_for_event_filtered: waitpid 374 received SIGSTOP - Stopped (signal) (stopped)
359.426088     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.426365     [threads] get_pc: pc is 0x4e97c214
359.426728     [threads] filter_event: Expected stop.
359.427058     [threads] filter_event: SIGSTOP caught for LWP 316.374 while stopping threads.
359.427366     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 373, ERRNO-OK
359.427656     [threads] wait_for_event_filtered: waitpid 373 received SIGSTOP - Stopped (signal) (stopped)
359.428034     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.428558     [threads] get_pc: pc is 0x4e97c216
359.428810     [threads] filter_event: Expected stop.
359.429076     [threads] filter_event: SIGSTOP caught for LWP 316.373 while stopping threads.
359.429450     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 372, ERRNO-OK
359.429764     [threads] wait_for_event_filtered: waitpid 372 received SIGSTOP - Stopped (signal) (stopped)
359.430202     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.430491     [threads] get_pc: pc is 0x4e97c216
359.430732     [threads] filter_event: Expected stop.
359.431075     [threads] filter_event: SIGSTOP caught for LWP 316.372 while stopping threads.
359.431394     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 371, ERRNO-OK
359.431684     [threads] wait_for_event_filtered: waitpid 371 received SIGSTOP - Stopped (signal) (stopped)
359.432082     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.432343     [threads] get_pc: pc is 0x4e97c214
359.432596     [threads] filter_event: Expected stop.
359.432860     [threads] filter_event: SIGSTOP caught for LWP 316.371 while stopping threads.
359.433171     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 370, ERRNO-OK
359.433350     [threads] wait_for_event_filtered: waitpid 370 received SIGSTOP - Stopped (signal) (stopped)
359.433622     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.433896     [threads] get_pc: pc is 0x4e97c216
359.434170     [threads] filter_event: Expected stop.
359.434440     [threads] filter_event: SIGSTOP caught for LWP 316.370 while stopping threads.
359.434860     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 369, ERRNO-OK
359.435156     [threads] wait_for_event_filtered: waitpid 369 received SIGSTOP - Stopped (signal) (stopped)
359.435557     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.435895     [threads] get_pc: pc is 0x4e97c214
359.436157     [threads] filter_event: Expected stop.
359.436415     [threads] filter_event: SIGSTOP caught for LWP 316.369 while stopping threads.
359.436836     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 368, ERRNO-OK
359.437126     [threads] wait_for_event_filtered: waitpid 368 received SIGSTOP - Stopped (signal) (stopped)
359.437574     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
359.437852     [threads] get_pc: pc is 0x4eb53d34
359.438105     [threads] filter_event: Expected stop.
359.438429     [threads] filter_event: SIGSTOP caught for LWP 316.368 while stopping threads.
359.438757     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 367, ERRNO-OK
359.439029     [threads] wait_for_event_filtered: waitpid 367 received SIGSTOP - Stopped (signal) (stopped)
359.439583     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.439859     [threads] get_pc: pc is 0x4e97c214
359.440175     [threads] filter_event: Expected stop.
359.440427     [threads] filter_event: SIGSTOP caught for LWP 316.367 while stopping threads.
359.440872     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 366, ERRNO-OK
359.441235     [threads] wait_for_event_filtered: waitpid 366 received SIGSTOP - Stopped (signal) (stopped)
359.441687     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.441968     [threads] get_pc: pc is 0x4e97c216
359.442226     [threads] filter_event: Expected stop.
359.442609     [threads] filter_event: SIGSTOP caught for LWP 316.366 while stopping threads.
359.442943     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 365, ERRNO-OK
359.443230     [threads] wait_for_event_filtered: waitpid 365 received SIGSTOP - Stopped (signal) (stopped)
359.443719     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.444052     [threads] get_pc: pc is 0x4e97c216
359.444303     [threads] filter_event: Expected stop.
359.444550     [threads] filter_event: SIGSTOP caught for LWP 316.365 while stopping threads.
359.444884     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 364, ERRNO-OK
359.445387     [threads] wait_for_event_filtered: waitpid 364 received SIGSTOP - Stopped (signal) (stopped)
359.445793     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.446062     [threads] get_pc: pc is 0x4e97c216
359.446425     [threads] filter_event: Expected stop.
359.446688     [threads] filter_event: SIGSTOP caught for LWP 316.364 while stopping threads.
359.447017     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 361, ERRNO-OK
359.447310     [threads] wait_for_event_filtered: waitpid 361 received SIGSTOP - Stopped (signal) (stopped)
359.447787     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.448141     [threads] get_pc: pc is 0x4e97c214
359.448414     [threads] filter_event: Expected stop.
359.448678     [threads] filter_event: SIGSTOP caught for LWP 316.361 while stopping threads.
359.449054     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 360, ERRNO-OK
359.449351     [threads] wait_for_event_filtered: waitpid 360 received SIGSTOP - Stopped (signal) (stopped)
359.449729     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.449997     [threads] get_pc: pc is 0x4e97c216
359.450311     [threads] filter_event: Expected stop.
359.450562     [threads] filter_event: SIGSTOP caught for LWP 316.360 while stopping threads.
359.450886     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 359, ERRNO-OK
359.451176     [threads] wait_for_event_filtered: waitpid 359 received SIGSTOP - Stopped (signal) (stopped)
359.451567     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.451828     [threads] get_pc: pc is 0x4e97c216
359.452068     [threads] filter_event: Expected stop.
359.452331     [threads] filter_event: SIGSTOP caught for LWP 316.359 while stopping threads.
359.452648     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 358, ERRNO-OK
359.452934     [threads] wait_for_event_filtered: waitpid 358 received SIGSTOP - Stopped (signal) (stopped)
359.453296     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.453528     [threads] get_pc: pc is 0x4e97c216
359.453737     [threads] filter_event: Expected stop.
359.453959     [threads] filter_event: SIGSTOP caught for LWP 316.358 while stopping threads.
359.454233     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 357, ERRNO-OK
359.454475     [threads] wait_for_event_filtered: waitpid 357 received SIGSTOP - Stopped (signal) (stopped)
359.454791     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.455011     [threads] get_pc: pc is 0x4e97c216
359.455220     [threads] filter_event: Expected stop.
359.455443     [threads] filter_event: SIGSTOP caught for LWP 316.357 while stopping threads.
359.455714     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 352, ERRNO-OK
359.455952     [threads] wait_for_event_filtered: waitpid 352 received SIGSTOP - Stopped (signal) (stopped)
359.456267     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.456496     [threads] get_pc: pc is 0x4e97c216
359.456891     [threads] filter_event: Expected stop.
359.457112     [threads] filter_event: SIGSTOP caught for LWP 316.352 while stopping threads.
359.457394     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 351, ERRNO-OK
359.458005     [threads] wait_for_event_filtered: waitpid 351 received SIGSTOP - Stopped (signal) (stopped)
359.458496     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
359.458780     [threads] get_pc: pc is 0x4e97c216
359.459030     [threads] filter_event: Expected stop.
359.459277     [threads] filter_event: SIGSTOP caught for LWP 316.351 while stopping threads.
359.459628     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 350, ERRNO-OK
359.459909     [threads] wait_for_event_filtered: waitpid 350 received SIGSTOP - Stopped (signal) (stopped)
359.460527     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.460879     [threads] get_pc: pc is 0x4e97c214
359.461141     [threads] filter_event: Expected stop.
359.461395     [threads] filter_event: SIGSTOP caught for LWP 316.350 while stopping threads.
359.461748     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 349, ERRNO-OK
359.462223     [threads] wait_for_event_filtered: waitpid 349 received SIGSTOP - Stopped (signal) (stopped)
359.462605     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.463018     [threads] get_pc: pc is 0x4e97c214
359.463291     [threads] filter_event: Expected stop.
359.463553     [threads] filter_event: SIGSTOP caught for LWP 316.349 while stopping threads.
359.463886     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.464660     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
359.465296     [threads] operator(): leader_pid=3020, leader_lp!=NULL=1, num_lwps=1, zombie=0
359.465679     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
359.466240     [threads] stop_all_lwps: setting stopping_threads back to !stopping
359.466515   [threads] stop_all_lwps: exit
359.466804   [threads] select_event_lwp: Select single-step LWP 316.379
359.467134   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
359.467605   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
359.467867   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
359.468141   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
359.468511   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
359.468784   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
359.469128   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
359.469399   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
359.469670   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
359.470111   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
359.470381   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
359.470640   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
359.470914   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
359.471309   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
359.471584   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
359.471851   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
359.472111   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
359.472518   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
359.472795   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
359.473172   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
359.473456   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
359.473729   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
359.473998   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
359.474369   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
359.474743   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
359.475019   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
359.475291   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
359.475620   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
359.475878   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
359.476267   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
359.476607   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
359.476865   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
359.477135   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
359.477474   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
359.477747   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
359.478015   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
359.478350   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
359.478612   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
359.478880   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
359.479147   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
359.479480   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
359.479738   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
359.480053   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
359.480456   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
359.480824   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
359.481087   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
359.481696   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
359.481973   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
359.482237   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
359.482504   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
359.482776   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
359.483029   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
359.483297   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
359.483641   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
359.484003   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
359.484355   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
359.484612   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
359.484889   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
359.485158   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
359.485428   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
359.485682   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
359.485954   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
359.486222   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
359.486480   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
359.486750   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
359.487022   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
359.487290   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
359.487545   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
359.487812   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
359.488082   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
359.488350   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
359.488752   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
359.489029   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
359.489310   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3020 needs to move out of the jump pad... no
359.489854   [threads] wait_1: ret = LWP 316.379, status->kind = STOPPED, sig = GDB_SIGNAL_TRAP
359.490210 [threads] wait_1: exit
359.490551 [threads] prepare_resume_reply: Writing resume reply for LWP 316.379:1
359.492062 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.492324 [threads] handle_serial_event: handling possible serial event
359.493313 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.493570 [threads] handle_serial_event: handling possible serial event
359.494693 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.494942 [threads] handle_serial_event: handling possible serial event
359.495510 [threads] resume: enter
359.495896   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
359.496189   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
359.496662   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.496927   [threads] resume: Not resuming, all-stop and found an LWP with pending status
359.497196   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
359.497552   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
359.497831   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
359.498140   [threads] resume_one_thread: leaving LWP 316 stopped
359.498415   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
359.498795   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.499149   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
359.499413   [threads] resume_one_thread: leaving LWP 349 stopped
359.499660   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
359.499931   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.500278   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
359.500531   [threads] resume_one_thread: leaving LWP 350 stopped
359.500805   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
359.501080   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.501337   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
359.501601   [threads] resume_one_thread: leaving LWP 351 stopped
359.501871   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
359.502145   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.502419   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
359.502668   [threads] resume_one_thread: leaving LWP 352 stopped
359.502930   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
359.503206   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.503462   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
359.503725   [threads] resume_one_thread: leaving LWP 357 stopped
359.503984   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
359.504239   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.504514   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
359.504775   [threads] resume_one_thread: leaving LWP 358 stopped
359.505116   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
359.505378   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.505653   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
359.505902   [threads] resume_one_thread: leaving LWP 359 stopped
359.506165   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
359.506436   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.506711   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
359.506960   [threads] resume_one_thread: leaving LWP 360 stopped
359.507221   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
359.507494   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.507747   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
359.507973   [threads] resume_one_thread: leaving LWP 361 stopped
359.508195   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
359.508435   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.508671   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
359.508897   [threads] resume_one_thread: leaving LWP 364 stopped
359.509468   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
359.509703   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.509945   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
359.510407   [threads] resume_one_thread: leaving LWP 365 stopped
359.510635   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
359.510869   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.511109   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
359.511331   [threads] resume_one_thread: leaving LWP 366 stopped
359.511557   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
359.511790   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.512027   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
359.512298   [threads] resume_one_thread: leaving LWP 367 stopped
359.512529   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
359.512904   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.513209   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
359.513472   [threads] resume_one_thread: leaving LWP 368 stopped
359.513723   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
359.513994   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.514271   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
359.514517   [threads] resume_one_thread: leaving LWP 369 stopped
359.514782   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
359.515053   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.515328   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
359.515573   [threads] resume_one_thread: leaving LWP 370 stopped
359.515838   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
359.516106   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.516387   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
359.516632   [threads] resume_one_thread: leaving LWP 371 stopped
359.516898   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
359.517172   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.517452   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
359.517695   [threads] resume_one_thread: leaving LWP 372 stopped
359.517961   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
359.518229   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.518503   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
359.518747   [threads] resume_one_thread: leaving LWP 373 stopped
359.519009   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
359.519278   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.519538   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
359.519796   [threads] resume_one_thread: leaving LWP 374 stopped
359.520110   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
359.520403   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.520678   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
359.520923   [threads] resume_one_thread: leaving LWP 375 stopped
359.521184   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
359.521443   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.521718   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
359.521973   [threads] resume_one_thread: leaving LWP 376 stopped
359.522220   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
359.522498   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.522774   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
359.523017   [threads] resume_one_thread: leaving LWP 377 stopped
359.523277   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
359.523547   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.523814   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
359.524056   [threads] resume_one_thread: leaving LWP 378 stopped
359.524315   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
359.524589   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.524844   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
359.525102   [threads] resume_one_thread: leaving LWP 379 stopped
359.525364   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
359.525623   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.525896   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
359.526151   [threads] resume_one_thread: leaving LWP 380 stopped
359.526403   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
359.526689   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.526950   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
359.527209   [threads] resume_one_thread: leaving LWP 381 stopped
359.527458   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
359.527733   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.528006   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
359.528264   [threads] resume_one_thread: leaving LWP 382 stopped
359.528838   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
359.529100   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.529377   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
359.529635   [threads] resume_one_thread: leaving LWP 383 stopped
359.529885   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
359.530220   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.530497   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
359.530743   [threads] resume_one_thread: leaving LWP 384 stopped
359.531015   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
359.531286   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.531701   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
359.531952   [threads] resume_one_thread: leaving LWP 385 stopped
359.532203   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
359.532480   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.532756   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
359.533007   [threads] resume_one_thread: leaving LWP 386 stopped
359.533274   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
359.533551   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.533822   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
359.534071   [threads] resume_one_thread: leaving LWP 387 stopped
359.534332   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
359.534603   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.534876   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
359.535123   [threads] resume_one_thread: leaving LWP 388 stopped
359.535384   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
359.535660   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.535928   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
359.536243   [threads] resume_one_thread: leaving LWP 389 stopped
359.536503   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
359.536777   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.537050   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
359.537300   [threads] resume_one_thread: leaving LWP 390 stopped
359.537564   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
359.537833   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.538106   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
359.538354   [threads] resume_one_thread: leaving LWP 391 stopped
359.538615   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
359.538887   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.539142   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
359.539409   [threads] resume_one_thread: leaving LWP 392 stopped
359.539672   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
359.539943   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.540715   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
359.540967   [threads] resume_one_thread: leaving LWP 393 stopped
359.541234   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
359.541509   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.541850   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
359.542101   [threads] resume_one_thread: leaving LWP 394 stopped
359.542500   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
359.542778   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.543040   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
359.543397   [threads] resume_one_thread: leaving LWP 395 stopped
359.543713   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
359.543990   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.544267   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
359.544529   [threads] resume_one_thread: leaving LWP 396 stopped
359.544777   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
359.545048   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.545458   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
359.545723   [threads] resume_one_thread: leaving LWP 397 stopped
359.545981   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
359.546272   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.546532   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
359.546871   [threads] resume_one_thread: leaving LWP 398 stopped
359.547123   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
359.547399   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.547734   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
359.547979   [threads] resume_one_thread: leaving LWP 399 stopped
359.548240   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
359.548509   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.548782   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
359.549028   [threads] resume_one_thread: leaving LWP 400 stopped
359.549291   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
359.549624   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.549900   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
359.550338   [threads] resume_one_thread: leaving LWP 401 stopped
359.550708   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
359.550991   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.551268   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
359.551624   [threads] resume_one_thread: leaving LWP 403 stopped
359.551891   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
359.552148   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.552545   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
359.552885   [threads] resume_one_thread: leaving LWP 404 stopped
359.553137   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
359.553411   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.553683   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
359.553930   [threads] resume_one_thread: leaving LWP 405 stopped
359.554195   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
359.554469   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.554740   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
359.554985   [threads] resume_one_thread: leaving LWP 406 stopped
359.555247   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
359.555535   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.555793   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
359.556054   [threads] resume_one_thread: leaving LWP 407 stopped
359.556302   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
359.556573   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.556843   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
359.557103   [threads] resume_one_thread: leaving LWP 408 stopped
359.557349   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
359.557623   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.557895   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
359.558144   [threads] resume_one_thread: leaving LWP 409 stopped
359.558408   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
359.558679   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
359.558936   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
359.559203   [threads] resume_one_thread: leaving LWP 410 stopped
359.559463   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
359.559732   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.559989   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
359.560288   [threads] resume_one_thread: leaving LWP 411 stopped
359.560821   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
359.561107   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.561387   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
359.561732   [threads] resume_one_thread: leaving LWP 412 stopped
359.562016   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
359.562262   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.562501   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
359.562719   [threads] resume_one_thread: leaving LWP 414 stopped
359.563102   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
359.563348   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.563580   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
359.563796   [threads] resume_one_thread: leaving LWP 433 stopped
359.564016   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
359.564242   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.564583   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
359.564923   [threads] resume_one_thread: leaving LWP 436 stopped
359.565147   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
359.565473   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.565706   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
359.565926   [threads] resume_one_thread: leaving LWP 437 stopped
359.566145   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
359.566374   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.566644   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
359.566910   [threads] resume_one_thread: leaving LWP 483 stopped
359.567139   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
359.567488   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.567833   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
359.568096   [threads] resume_one_thread: leaving LWP 484 stopped
359.568360   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
359.568617   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.568892   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
359.569150   [threads] resume_one_thread: leaving LWP 493 stopped
359.569396   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
359.569801   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.570140   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
359.570409   [threads] resume_one_thread: leaving LWP 508 stopped
359.570752   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
359.571140   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.571421   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
359.571668   [threads] resume_one_thread: leaving LWP 613 stopped
359.572106   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
359.572379   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.572643   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
359.572914   [threads] resume_one_thread: leaving LWP 624 stopped
359.573299   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
359.573707   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.573990   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
359.574236   [threads] resume_one_thread: leaving LWP 655 stopped
359.574501   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
359.574775   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.575049   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
359.575294   [threads] resume_one_thread: leaving LWP 660 stopped
359.575556   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
359.575826   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.576102   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
359.576345   [threads] resume_one_thread: leaving LWP 661 stopped
359.576610   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
359.576879   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.577154   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
359.577397   [threads] resume_one_thread: leaving LWP 1074 stopped
359.577658   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
359.577931   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.578192   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
359.578453   [threads] resume_one_thread: leaving LWP 1118 stopped
359.578714   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
359.578988   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.579247   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
359.579517   [threads] resume_one_thread: leaving LWP 1293 stopped
359.579770   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 1
359.580089   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
359.580380   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: thread->last_resume_kind 0, line 4717
359.580624   [threads] resume_one_thread: leaving LWP 2999 stopped
359.580890   [threads] operator(): [zyan1]  thread LWP 3020.3020 is going to call resume_one_thread, leave_all_stopped 1
359.581145   [threads] resume_one_thread: [zyan1]  thread LWP 3020.3020: 4624
359.581960 [threads] resume: exit
359.582229 [threads] wait_1: enter
359.582691   [threads] wait_1: [<all threads>]
359.582973   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.583259   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.583818   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
359.584178   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7d8
359.584452   [threads] get_pc: pc is 0x4e98a7d8
359.584721   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.2999, last_resume_kind 0, lp->stop_reason 1
359.585006   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.585345   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
359.585606   [threads] wait_for_event_filtered: Got a pending child 410
359.585860   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
359.586189   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3020.3020.0
359.586480   [threads] wait_1: Hit a non-gdbserver trap event.
359.586875   [threads] stop_all_lwps: enter
359.587129     [threads] stop_all_lwps: stop, except=none
359.587435     [threads] wait_for_sigstop: pulling events
359.587801     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.588657     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
359.589288     [threads] operator(): leader_pid=3020, leader_lp!=NULL=1, num_lwps=1, zombie=0
359.589847     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
359.590268     [threads] stop_all_lwps: setting stopping_threads back to !stopping
359.590544   [threads] stop_all_lwps: exit
359.591233   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
359.591506   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
359.591794   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
359.592069   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
359.592444   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
359.592832   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
359.593109   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
359.593378   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
359.593646   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
359.593905   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
359.594173   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
359.594440   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
359.594710   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
359.594968   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
359.595237   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
359.595505   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
359.595759   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
359.596035   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
359.596304   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
359.596570   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
359.596823   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
359.597093   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
359.597364   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
359.597631   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
359.597890   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
359.598167   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
359.598436   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
359.598689   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
359.598961   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
359.599233   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
359.599500   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
359.599753   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
359.600421   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
359.600840   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
359.601111   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
359.601386   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
359.601772   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
359.602035   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
359.602309   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
359.602804   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
359.603100   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
359.603375   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
359.603635   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
359.603907   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
359.604178   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
359.604450   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
359.604970   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
359.605256   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
359.605520   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
359.605789   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
359.606059   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
359.606328   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
359.606586   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
359.606854   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
359.607227   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
359.607506   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
359.608002   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
359.608283   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
359.608561   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
359.608831   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
359.609214   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
359.609494   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
359.609953   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
359.610301   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
359.610583   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
359.610840   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
359.611110   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
359.611380   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
359.611778   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
359.612160   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
359.612435   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
359.612710   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
359.613049   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
359.613322   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3020 needs to move out of the jump pad... no
359.614025   [threads] wait_1: ret = LWP 316.2999, status->kind = STOPPED, sig = GDB_SIGNAL_TRAP
359.614290 [threads] wait_1: exit
359.614624 [threads] prepare_resume_reply: Writing resume reply for LWP 316.2999:1
359.616442 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.616724 [threads] handle_serial_event: handling possible serial event
359.617025 [threads] write_memory: Writing 38b5 to 0x4e98a7d8 in process 316
359.618428 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.618696 [threads] handle_serial_event: handling possible serial event
359.620125 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.620402 [threads] handle_serial_event: handling possible serial event
359.620794 [threads] resume: enter
359.621562   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.2999: last_resume_kind set set 'resume_step'
359.622242   [threads] operator(): [zyan1]  thread LWP 316.2999: last_resume_kind set set 'resume_step', i: 2
359.622851   [threads] thread_needs_step_over: Need step over [LWP 316]? Ignoring, should remain stopped
359.623094   [threads] thread_needs_step_over: Need step over [LWP 349]? Ignoring, should remain stopped
359.623729   [threads] thread_needs_step_over: Need step over [LWP 350]? Ignoring, should remain stopped
359.623957   [threads] thread_needs_step_over: Need step over [LWP 351]? Ignoring, should remain stopped
359.624511   [threads] thread_needs_step_over: Need step over [LWP 352]? Ignoring, should remain stopped
359.624744   [threads] thread_needs_step_over: Need step over [LWP 357]? Ignoring, should remain stopped
359.625369   [threads] thread_needs_step_over: Need step over [LWP 358]? Ignoring, should remain stopped
359.625602   [threads] thread_needs_step_over: Need step over [LWP 359]? Ignoring, should remain stopped
359.626147   [threads] thread_needs_step_over: Need step over [LWP 360]? Ignoring, should remain stopped
359.626379   [threads] thread_needs_step_over: Need step over [LWP 361]? Ignoring, should remain stopped
359.626950   [threads] thread_needs_step_over: Need step over [LWP 364]? Ignoring, should remain stopped
359.627178   [threads] thread_needs_step_over: Need step over [LWP 365]? Ignoring, should remain stopped
359.627818   [threads] thread_needs_step_over: Need step over [LWP 366]? Ignoring, should remain stopped
359.628051   [threads] thread_needs_step_over: Need step over [LWP 367]? Ignoring, should remain stopped
359.628275   [threads] thread_needs_step_over: Need step over [LWP 368]? Ignoring, should remain stopped
359.628820   [threads] thread_needs_step_over: Need step over [LWP 369]? Ignoring, should remain stopped
359.629048   [threads] thread_needs_step_over: Need step over [LWP 370]? Ignoring, should remain stopped
359.629572   [threads] thread_needs_step_over: Need step over [LWP 371]? Ignoring, should remain stopped
359.629801   [threads] thread_needs_step_over: Need step over [LWP 372]? Ignoring, should remain stopped
359.630409   [threads] thread_needs_step_over: Need step over [LWP 373]? Ignoring, should remain stopped
359.630641   [threads] thread_needs_step_over: Need step over [LWP 374]? Ignoring, should remain stopped
359.631202   [threads] thread_needs_step_over: Need step over [LWP 375]? Ignoring, should remain stopped
359.631438   [threads] thread_needs_step_over: Need step over [LWP 376]? Ignoring, should remain stopped
359.631965   [threads] thread_needs_step_over: Need step over [LWP 377]? Ignoring, should remain stopped
359.632196   [threads] thread_needs_step_over: Need step over [LWP 378]? Ignoring, should remain stopped
359.632717   [threads] thread_needs_step_over: Need step over [LWP 379]? Ignoring, should remain stopped
359.632945   [threads] thread_needs_step_over: Need step over [LWP 380]? Ignoring, should remain stopped
359.633482   [threads] thread_needs_step_over: Need step over [LWP 381]? Ignoring, should remain stopped
359.633719   [threads] thread_needs_step_over: Need step over [LWP 382]? Ignoring, should remain stopped
359.634241   [threads] thread_needs_step_over: Need step over [LWP 383]? Ignoring, should remain stopped
359.634469   [threads] thread_needs_step_over: Need step over [LWP 384]? Ignoring, should remain stopped
359.634996   [threads] thread_needs_step_over: Need step over [LWP 385]? Ignoring, should remain stopped
359.635497   [threads] thread_needs_step_over: Need step over [LWP 386]? Ignoring, should remain stopped
359.635746   [threads] thread_needs_step_over: Need step over [LWP 387]? Ignoring, should remain stopped
359.636262   [threads] thread_needs_step_over: Need step over [LWP 388]? Ignoring, should remain stopped
359.636491   [threads] thread_needs_step_over: Need step over [LWP 389]? Ignoring, should remain stopped
359.637008   [threads] thread_needs_step_over: Need step over [LWP 390]? Ignoring, should remain stopped
359.637243   [threads] thread_needs_step_over: Need step over [LWP 391]? Ignoring, should remain stopped
359.637878   [threads] thread_needs_step_over: Need step over [LWP 392]? Ignoring, should remain stopped
359.638110   [threads] thread_needs_step_over: Need step over [LWP 393]? Ignoring, should remain stopped
359.638643   [threads] thread_needs_step_over: Need step over [LWP 394]? Ignoring, should remain stopped
359.638873   [threads] thread_needs_step_over: Need step over [LWP 395]? Ignoring, should remain stopped
359.639399   [threads] thread_needs_step_over: Need step over [LWP 396]? Ignoring, should remain stopped
359.639901   [threads] thread_needs_step_over: Need step over [LWP 397]? Ignoring, should remain stopped
359.640353   [threads] thread_needs_step_over: Need step over [LWP 398]? Ignoring, should remain stopped
359.641037   [threads] thread_needs_step_over: Need step over [LWP 399]? Ignoring, should remain stopped
359.641263   [threads] thread_needs_step_over: Need step over [LWP 400]? Ignoring, should remain stopped
359.641486   [threads] thread_needs_step_over: Need step over [LWP 401]? Ignoring, should remain stopped
359.642044   [threads] thread_needs_step_over: Need step over [LWP 403]? Ignoring, should remain stopped
359.642271   [threads] thread_needs_step_over: Need step over [LWP 404]? Ignoring, should remain stopped
359.642795   [threads] thread_needs_step_over: Need step over [LWP 405]? Ignoring, should remain stopped
359.643025   [threads] thread_needs_step_over: Need step over [LWP 406]? Ignoring, should remain stopped
359.643544   [threads] thread_needs_step_over: Need step over [LWP 407]? Ignoring, should remain stopped
359.644173   [threads] thread_needs_step_over: Need step over [LWP 408]? Ignoring, should remain stopped
359.644424   [threads] thread_needs_step_over: Need step over [LWP 409]? Ignoring, should remain stopped
359.644948   [threads] thread_needs_step_over: Need step over [LWP 410]? Ignoring, should remain stopped
359.645182   [threads] thread_needs_step_over: Need step over [LWP 411]? Ignoring, should remain stopped
359.645702   [threads] thread_needs_step_over: Need step over [LWP 412]? Ignoring, should remain stopped
359.645936   [threads] thread_needs_step_over: Need step over [LWP 414]? Ignoring, should remain stopped
359.646615   [threads] thread_needs_step_over: Need step over [LWP 433]? Ignoring, should remain stopped
359.646843   [threads] thread_needs_step_over: Need step over [LWP 436]? Ignoring, should remain stopped
359.647384   [threads] thread_needs_step_over: Need step over [LWP 437]? Ignoring, should remain stopped
359.647698   [threads] thread_needs_step_over: Need step over [LWP 483]? Ignoring, should remain stopped
359.648226   [threads] thread_needs_step_over: Need step over [LWP 484]? Ignoring, should remain stopped
359.648460   [threads] thread_needs_step_over: Need step over [LWP 493]? Ignoring, should remain stopped
359.648976   [threads] thread_needs_step_over: Need step over [LWP 508]? Ignoring, should remain stopped
359.649282   [threads] thread_needs_step_over: Need step over [LWP 613]? Ignoring, should remain stopped
359.649819   [threads] thread_needs_step_over: Need step over [LWP 624]? Ignoring, should remain stopped
359.650131   [threads] thread_needs_step_over: Need step over [LWP 655]? Ignoring, should remain stopped
359.650226   [threads] thread_needs_step_over: Need step over [LWP 660]? Ignoring, should remain stopped
359.650387   [threads] thread_needs_step_over: Need step over [LWP 661]? Ignoring, should remain stopped
359.650634   [threads] thread_needs_step_over: Need step over [LWP 1074]? Ignoring, should remain stopped
359.650877   [threads] thread_needs_step_over: Need step over [LWP 1118]? Ignoring, should remain stopped
359.651116   [threads] thread_needs_step_over: Need step over [LWP 1293]? Ignoring, should remain stopped
359.651377   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7d8
359.651616   [threads] get_pc: pc is 0x4e98a7d8
359.651859   [threads] thread_needs_step_over: Need step over [LWP 2999]? No, no breakpoint found at 0x4e98a7d8
359.652108   [threads] thread_needs_step_over: Need step over [LWP 3020]? Ignoring, should remain stopped
359.652345   [threads] resume: Resuming, no pending status or step over needed
359.652594   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
359.652849   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4624
359.653095   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
359.653345   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4624
359.653589   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
359.653838   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4624
359.654079   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
359.654372   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4624
359.654632   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
359.654878   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4624
359.655119   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
359.655362   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4624
359.655602   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
359.655856   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4624
359.656098   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
359.656343   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4624
359.656583   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
359.656838   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4624
359.657082   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
359.657333   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4624
359.657575   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
359.657828   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4624
359.658070   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
359.658316   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4624
359.658554   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
359.658804   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4624
359.659045   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
359.659294   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4624
359.659536   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
359.659782   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4624
359.660084   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
359.660346   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4624
359.660592   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
359.660839   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4624
359.661085   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
359.661332   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4624
359.661582   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
359.661830   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4624
359.662074   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
359.662320   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4624
359.662561   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
359.662805   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4624
359.663049   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
359.663293   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4624
359.663534   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
359.663778   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4624
359.664026   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
359.664326   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4624
359.664572   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
359.664821   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4624
359.665063   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
359.665311   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4624
359.665553   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
359.665796   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4624
359.666037   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
359.666285   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4624
359.666527   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
359.666773   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4624
359.667014   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
359.667260   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4624
359.667500   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
359.667741   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4624
359.667978   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
359.668226   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4624
359.668470   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
359.668714   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4624
359.668954   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
359.669197   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4624
359.669441   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
359.669684   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4624
359.669924   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
359.670250   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4624
359.670499   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
359.670745   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4624
359.670985   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
359.675704   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4624
359.675971   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
359.676227   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4624
359.676472   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
359.676723   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4624
359.676963   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
359.677206   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4624
359.677446   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
359.677702   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4624
359.677947   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
359.678196   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4624
359.678502   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
359.678763   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4624
359.679010   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
359.679258   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4624
359.679498   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
359.679751   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4624
359.679997   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
359.680344   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4624
359.680593   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
359.680843   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4624
359.681091   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
359.681346   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4624
359.681590   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
359.681841   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4624
359.682089   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
359.682337   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4624
359.682579   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
359.682825   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4624
359.683070   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
359.683314   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4624
359.683561   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
359.683814   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4624
359.684063   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
359.684311   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4624
359.684551   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
359.684798   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4624
359.685042   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
359.685288   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4624
359.685527   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
359.685772   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4624
359.686016   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
359.686273   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4624
359.686517   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
359.686762   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4624
359.687000   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
359.687251   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4624
359.687492   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
359.687738   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4624
359.687978   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
359.688228   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4624
359.688472   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
359.688764   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4624
359.689018   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
359.689269   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4624
359.689511   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
359.689754   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4624
359.689992   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
359.690294   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4624
359.690544   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
359.690790   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4624
359.691031   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
359.691278   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4624
359.691517   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
359.691762   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4624
359.691999   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
359.692241   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4624
359.692489   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
359.692732   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4624
359.692971   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
359.693211   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4624
359.693453   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
359.693695   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4624
359.693934   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 0
359.694178   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
359.694419   [threads] resume_one_thread: resuming LWP 2999
359.694644   [threads] proceed_one_lwp: lwp 2999
359.694868   [threads] proceed_one_lwp:    stepping LWP 2999, client wants it stepping
359.695136   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7d8
359.695449   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7d8
359.695778   [threads] set_single_step_breakpoint: [zyan1]  thread LWP 316.2999
359.696114   [threads] write_memory: Writing 01de to 0x4e98a7da in process 316
359.696425   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7d8
359.696687   [threads] resume_one_lwp_throw:   continue from pc 0x4e98a7d8
359.696917   [threads] resume_one_lwp_throw: Resuming lwp 2999 (continue, signal 0, stop not expected)
359.697309 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.2999
359.697801   [threads] operator(): [zyan1]  thread LWP 3020.3020 is going to call resume_one_thread, leave_all_stopped 0
359.698064   [threads] resume_one_thread: [zyan1]  thread LWP 3020.3020: 4624
359.698299 [threads] resume: exit
359.698530 [threads] wait_1: enter
359.698768   [threads] wait_1: [<all threads>]
359.699265   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 2999, ERRNO-OK
359.699610   [threads] wait_for_event_filtered: waitpid 2999 received SIGTRAP - Trace/breakpoint trap (stopped)
359.700088   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7da
359.700347   [threads] get_pc: pc is 0x4e98a7da
359.700609   [threads] save_stop_reason: LWP 316.2999 stopped by software breakpoint
359.700946   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.701383   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7da
359.701629   [threads] get_pc: pc is 0x4e98a7da
359.701879   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.2999, last_resume_kind 1, lp->stop_reason 1
359.702222   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7da
359.702467   [threads] get_pc: pc is 0x4e98a7da
359.702711   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.2999, last_resume_kind 1, lp->stop_reason 1
359.702976   [threads] wait_1: Hit a gdbserver breakpoint.
359.703222   [threads] wait_1: GDB wanted to single-step, reporting event.
359.703462   [threads] wait_1: Hit a non-gdbserver trap event.
359.703828   [threads] stop_all_lwps: enter
359.704078     [threads] stop_all_lwps: stop, except=LWP 316.2999
359.704357     [threads] wait_for_sigstop: pulling events
359.704677     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.705384     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
359.706001     [threads] operator(): leader_pid=3020, leader_lp!=NULL=1, num_lwps=1, zombie=0
359.706357     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
359.706659     [threads] stop_all_lwps: setting stopping_threads back to !stopping
359.706896   [threads] stop_all_lwps: exit
359.707276   [threads] operator(): [zyan1] operator() 3470, thread LWP 316.2999, thread->last_resume_kind 1
359.707549   [threads] write_memory: Writing 0446 to 0x4e98a7da in process 316
359.707860   [threads] unstop_all_lwps: enter
359.708116     [threads] unstop_all_lwps: except=(LWP 2999)
359.708349     [threads] proceed_one_lwp: lwp 316
359.708575     [threads] proceed_one_lwp:    client wants LWP to remain 316 stopped
359.708805     [threads] proceed_one_lwp: lwp 349
359.709031     [threads] proceed_one_lwp:    client wants LWP to remain 349 stopped
359.709265     [threads] proceed_one_lwp: lwp 350
359.709489     [threads] proceed_one_lwp:    client wants LWP to remain 350 stopped
359.709718     [threads] proceed_one_lwp: lwp 351
359.709940     [threads] proceed_one_lwp:    client wants LWP to remain 351 stopped
359.710343     [threads] proceed_one_lwp: lwp 352
359.710576     [threads] proceed_one_lwp:    client wants LWP to remain 352 stopped
359.710808     [threads] proceed_one_lwp: lwp 357
359.711033     [threads] proceed_one_lwp:    client wants LWP to remain 357 stopped
359.711266     [threads] proceed_one_lwp: lwp 358
359.711495     [threads] proceed_one_lwp:    client wants LWP to remain 358 stopped
359.711736     [threads] proceed_one_lwp: lwp 359
359.711964     [threads] proceed_one_lwp:    client wants LWP to remain 359 stopped
359.712197     [threads] proceed_one_lwp: lwp 360
359.712428     [threads] proceed_one_lwp:    client wants LWP to remain 360 stopped
359.712657     [threads] proceed_one_lwp: lwp 361
359.712881     [threads] proceed_one_lwp:    client wants LWP to remain 361 stopped
359.713111     [threads] proceed_one_lwp: lwp 364
359.713338     [threads] proceed_one_lwp:    client wants LWP to remain 364 stopped
359.713573     [threads] proceed_one_lwp: lwp 365
359.713801     [threads] proceed_one_lwp:    client wants LWP to remain 365 stopped
359.714030     [threads] proceed_one_lwp: lwp 366
359.714256     [threads] proceed_one_lwp:    client wants LWP to remain 366 stopped
359.714490     [threads] proceed_one_lwp: lwp 367
359.714715     [threads] proceed_one_lwp:    client wants LWP to remain 367 stopped
359.714950     [threads] proceed_one_lwp: lwp 368
359.715176     [threads] proceed_one_lwp:    client wants LWP to remain 368 stopped
359.715413     [threads] proceed_one_lwp: lwp 369
359.715639     [threads] proceed_one_lwp:    client wants LWP to remain 369 stopped
359.715869     [threads] proceed_one_lwp: lwp 370
359.716093     [threads] proceed_one_lwp:    client wants LWP to remain 370 stopped
359.716327     [threads] proceed_one_lwp: lwp 371
359.716553     [threads] proceed_one_lwp:    client wants LWP to remain 371 stopped
359.716784     [threads] proceed_one_lwp: lwp 372
359.717013     [threads] proceed_one_lwp:    client wants LWP to remain 372 stopped
359.717245     [threads] proceed_one_lwp: lwp 373
359.717471     [threads] proceed_one_lwp:    client wants LWP to remain 373 stopped
359.717701     [threads] proceed_one_lwp: lwp 374
359.717925     [threads] proceed_one_lwp:    client wants LWP to remain 374 stopped
359.718154     [threads] proceed_one_lwp: lwp 375
359.718380     [threads] proceed_one_lwp:    client wants LWP to remain 375 stopped
359.718622     [threads] proceed_one_lwp: lwp 376
359.718846     [threads] proceed_one_lwp:    client wants LWP to remain 376 stopped
359.719074     [threads] proceed_one_lwp: lwp 377
359.719297     [threads] proceed_one_lwp:    client wants LWP to remain 377 stopped
359.719524     [threads] proceed_one_lwp: lwp 378
359.719752     [threads] proceed_one_lwp:    client wants LWP to remain 378 stopped
359.719987     [threads] proceed_one_lwp: lwp 379
359.720289     [threads] proceed_one_lwp:    client wants LWP to remain 379 stopped
359.720582     [threads] proceed_one_lwp: lwp 380
359.720817     [threads] proceed_one_lwp:    client wants LWP to remain 380 stopped
359.721055     [threads] proceed_one_lwp: lwp 381
359.721283     [threads] proceed_one_lwp:    client wants LWP to remain 381 stopped
359.721514     [threads] proceed_one_lwp: lwp 382
359.721747     [threads] proceed_one_lwp:    client wants LWP to remain 382 stopped
359.721976     [threads] proceed_one_lwp: lwp 383
359.722201     [threads] proceed_one_lwp:    client wants LWP to remain 383 stopped
359.722432     [threads] proceed_one_lwp: lwp 384
359.722663     [threads] proceed_one_lwp:    client wants LWP to remain 384 stopped
359.722900     [threads] proceed_one_lwp: lwp 385
359.723125     [threads] proceed_one_lwp:    client wants LWP to remain 385 stopped
359.723355     [threads] proceed_one_lwp: lwp 386
359.723582     [threads] proceed_one_lwp:    client wants LWP to remain 386 stopped
359.723815     [threads] proceed_one_lwp: lwp 387
359.724039     [threads] proceed_one_lwp:    client wants LWP to remain 387 stopped
359.724266     [threads] proceed_one_lwp: lwp 388
359.724489     [threads] proceed_one_lwp:    client wants LWP to remain 388 stopped
359.724717     [threads] proceed_one_lwp: lwp 389
359.724943     [threads] proceed_one_lwp:    client wants LWP to remain 389 stopped
359.725172     [threads] proceed_one_lwp: lwp 390
359.725394     [threads] proceed_one_lwp:    client wants LWP to remain 390 stopped
359.730179     [threads] proceed_one_lwp: lwp 391
359.730430     [threads] proceed_one_lwp:    client wants LWP to remain 391 stopped
359.730669     [threads] proceed_one_lwp: lwp 392
359.730904     [threads] proceed_one_lwp:    client wants LWP to remain 392 stopped
359.731143     [threads] proceed_one_lwp: lwp 393
359.731368     [threads] proceed_one_lwp:    client wants LWP to remain 393 stopped
359.731596     [threads] proceed_one_lwp: lwp 394
359.731822     [threads] proceed_one_lwp:    client wants LWP to remain 394 stopped
359.732052     [threads] proceed_one_lwp: lwp 395
359.732280     [threads] proceed_one_lwp:    client wants LWP to remain 395 stopped
359.732512     [threads] proceed_one_lwp: lwp 396
359.732736     [threads] proceed_one_lwp:    client wants LWP to remain 396 stopped
359.732971     [threads] proceed_one_lwp: lwp 397
359.733200     [threads] proceed_one_lwp:    client wants LWP to remain 397 stopped
359.733433     [threads] proceed_one_lwp: lwp 398
359.733664     [threads] proceed_one_lwp:    client wants LWP to remain 398 stopped
359.733895     [threads] proceed_one_lwp: lwp 399
359.734124     [threads] proceed_one_lwp:    client wants LWP to remain 399 stopped
359.734361     [threads] proceed_one_lwp: lwp 400
359.734587     [threads] proceed_one_lwp:    client wants LWP to remain 400 stopped
359.734867     [threads] proceed_one_lwp: lwp 401
359.735098     [threads] proceed_one_lwp:    client wants LWP to remain 401 stopped
359.735333     [threads] proceed_one_lwp: lwp 403
359.735564     [threads] proceed_one_lwp:    client wants LWP to remain 403 stopped
359.735805     [threads] proceed_one_lwp: lwp 404
359.736031     [threads] proceed_one_lwp:    client wants LWP to remain 404 stopped
359.736266     [threads] proceed_one_lwp: lwp 405
359.736494     [threads] proceed_one_lwp:    client wants LWP to remain 405 stopped
359.736722     [threads] proceed_one_lwp: lwp 406
359.736948     [threads] proceed_one_lwp:    client wants LWP to remain 406 stopped
359.737183     [threads] proceed_one_lwp: lwp 407
359.737408     [threads] proceed_one_lwp:    client wants LWP to remain 407 stopped
359.737639     [threads] proceed_one_lwp: lwp 408
359.737868     [threads] proceed_one_lwp:    client wants LWP to remain 408 stopped
359.738099     [threads] proceed_one_lwp: lwp 409
359.738321     [threads] proceed_one_lwp:    client wants LWP to remain 409 stopped
359.738554     [threads] proceed_one_lwp: lwp 410
359.738781     [threads] proceed_one_lwp:    client wants LWP to remain 410 stopped
359.739009     [threads] proceed_one_lwp: lwp 411
359.739229     [threads] proceed_one_lwp:    client wants LWP to remain 411 stopped
359.739461     [threads] proceed_one_lwp: lwp 412
359.739686     [threads] proceed_one_lwp:    client wants LWP to remain 412 stopped
359.739914     [threads] proceed_one_lwp: lwp 414
359.740207     [threads] proceed_one_lwp:    client wants LWP to remain 414 stopped
359.740444     [threads] proceed_one_lwp: lwp 433
359.740675     [threads] proceed_one_lwp:    client wants LWP to remain 433 stopped
359.740902     [threads] proceed_one_lwp: lwp 436
359.741125     [threads] proceed_one_lwp:    client wants LWP to remain 436 stopped
359.741356     [threads] proceed_one_lwp: lwp 437
359.741577     [threads] proceed_one_lwp:    client wants LWP to remain 437 stopped
359.741811     [threads] proceed_one_lwp: lwp 483
359.742031     [threads] proceed_one_lwp:    client wants LWP to remain 483 stopped
359.742260     [threads] proceed_one_lwp: lwp 484
359.742482     [threads] proceed_one_lwp:    client wants LWP to remain 484 stopped
359.742716     [threads] proceed_one_lwp: lwp 493
359.742940     [threads] proceed_one_lwp:    client wants LWP to remain 493 stopped
359.743171     [threads] proceed_one_lwp: lwp 508
359.743396     [threads] proceed_one_lwp:    client wants LWP to remain 508 stopped
359.743624     [threads] proceed_one_lwp: lwp 613
359.743852     [threads] proceed_one_lwp:    client wants LWP to remain 613 stopped
359.744085     [threads] proceed_one_lwp: lwp 624
359.744309     [threads] proceed_one_lwp:    client wants LWP to remain 624 stopped
359.744541     [threads] proceed_one_lwp: lwp 655
359.744823     [threads] proceed_one_lwp:    client wants LWP to remain 655 stopped
359.745059     [threads] proceed_one_lwp: lwp 660
359.745284     [threads] proceed_one_lwp:    client wants LWP to remain 660 stopped
359.745515     [threads] proceed_one_lwp: lwp 661
359.745742     [threads] proceed_one_lwp:    client wants LWP to remain 661 stopped
359.745980     [threads] proceed_one_lwp: lwp 1074
359.746207     [threads] proceed_one_lwp:    client wants LWP to remain 1074 stopped
359.746443     [threads] proceed_one_lwp: lwp 1118
359.746672     [threads] proceed_one_lwp:    client wants LWP to remain 1118 stopped
359.746912     [threads] proceed_one_lwp: lwp 1293
359.747138     [threads] proceed_one_lwp:    client wants LWP to remain 1293 stopped
359.747370     [threads] proceed_one_lwp: lwp 3020
359.747592     [threads] proceed_one_lwp:    client wants LWP to remain 3020 stopped
359.747825   [threads] unstop_all_lwps: exit
359.748058   [threads] stop_all_lwps: enter
359.748285     [threads] stop_all_lwps: stop, except=none
359.748568     [threads] wait_for_sigstop: pulling events
359.748902     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.749615     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
359.750346     [threads] operator(): leader_pid=3020, leader_lp!=NULL=1, num_lwps=1, zombie=0
359.750709     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
359.751020     [threads] stop_all_lwps: setting stopping_threads back to !stopping
359.751267   [threads] stop_all_lwps: exit
359.751565   [threads] select_event_lwp: Select single-step LWP 316.2999
359.751873   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
359.752138   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
359.752387   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
359.752638   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
359.752888   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
359.753135   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
359.753377   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
359.753622   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
359.753875   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
359.754127   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
359.754375   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
359.754623   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
359.754867   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
359.755118   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
359.755374   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
359.755620   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
359.755929   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
359.756179   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
359.756428   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
359.756683   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
359.756935   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
359.757180   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
359.757426   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
359.757670   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
359.757916   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
359.758161   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
359.758418   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
359.758661   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
359.758909   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
359.759156   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
359.759401   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
359.759652   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
359.759897   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
359.760211   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
359.760460   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
359.760710   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
359.760968   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
359.761216   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
359.761459   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
359.761708   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
359.761952   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
359.762199   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
359.762448   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
359.762695   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
359.762944   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
359.763188   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
359.763436   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
359.763693   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
359.763941   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
359.764193   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
359.764438   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
359.764690   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
359.764935   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
359.765179   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
359.765421   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
359.765667   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
359.765949   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
359.766209   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
359.766455   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
359.766701   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
359.766949   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
359.767193   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
359.767436   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
359.767679   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
359.767926   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
359.768170   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
359.768412   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
359.768657   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
359.768906   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
359.769153   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
359.769403   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
359.769650   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
359.769899   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
359.770244   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
359.770509   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3020 needs to move out of the jump pad... no
359.770964   [threads] wait_1: ret = LWP 316.2999, status->kind = STOPPED, sig = GDB_SIGNAL_TRAP
359.771227 [threads] wait_1: exit
359.771519 [threads] prepare_resume_reply: Writing resume reply for LWP 316.2999:1
359.773005 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.773304 [threads] handle_serial_event: handling possible serial event
359.774513 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.774788 [threads] handle_serial_event: handling possible serial event
359.775859 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.776123 [threads] handle_serial_event: handling possible serial event
359.777291 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.777554 [threads] handle_serial_event: handling possible serial event
359.778760 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.779024 [threads] handle_serial_event: handling possible serial event
359.782126 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.782716 [threads] handle_serial_event: handling possible serial event
359.783904 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.784805 [threads] handle_serial_event: handling possible serial event
359.785134 [threads] write_memory: Writing 01de to 0x4e98a7d8 in process 316
359.787083 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.787641 [threads] handle_serial_event: handling possible serial event
359.788978 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.789531 [threads] handle_serial_event: handling possible serial event
359.789960 [threads] resume: enter
359.790391   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
359.790817   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
359.791300   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.791573   [threads] resume: Not resuming, all-stop and found an LWP with pending status
359.791844   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
359.792195   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
359.792570   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
359.792836   [threads] resume_one_thread: leaving LWP 316 stopped
359.793105   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
359.793463   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.793811   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
359.794145   [threads] resume_one_thread: leaving LWP 349 stopped
359.794419   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
359.794675   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.794937   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
359.795313   [threads] resume_one_thread: leaving LWP 350 stopped
359.795630   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
359.795907   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.796184   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
359.796440   [threads] resume_one_thread: leaving LWP 351 stopped
359.796685   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
359.796953   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.797226   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
359.797467   [threads] resume_one_thread: leaving LWP 352 stopped
359.797728   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
359.797995   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.798254   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
359.798515   [threads] resume_one_thread: leaving LWP 357 stopped
359.798771   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
359.799027   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.799306   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
359.799736   [threads] resume_one_thread: leaving LWP 358 stopped
359.800123   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
359.800535   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.800828   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
359.801091   [threads] resume_one_thread: leaving LWP 359 stopped
359.801342   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
359.801729   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.801997   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
359.802325   [threads] resume_one_thread: leaving LWP 360 stopped
359.802693   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
359.802970   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.803244   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
359.803503   [threads] resume_one_thread: leaving LWP 361 stopped
359.804011   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
359.804288   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.804561   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
359.804818   [threads] resume_one_thread: leaving LWP 364 stopped
359.805127   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
359.805463   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.805744   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
359.806002   [threads] resume_one_thread: leaving LWP 365 stopped
359.806330   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
359.806691   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.806975   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
359.807233   [threads] resume_one_thread: leaving LWP 366 stopped
359.807477   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
359.807752   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.808020   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
359.808279   [threads] resume_one_thread: leaving LWP 367 stopped
359.808527   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
359.808798   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.809260   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
359.809513   [threads] resume_one_thread: leaving LWP 368 stopped
359.809784   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
359.810089   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.810371   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
359.810615   [threads] resume_one_thread: leaving LWP 369 stopped
359.810881   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
359.811148   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.811418   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
359.811661   [threads] resume_one_thread: leaving LWP 370 stopped
359.811927   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
359.812201   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.812460   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
359.812715   [threads] resume_one_thread: leaving LWP 371 stopped
359.812984   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
359.813258   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.813532   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
359.813776   [threads] resume_one_thread: leaving LWP 372 stopped
359.814042   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
359.814313   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.814570   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
359.814832   [threads] resume_one_thread: leaving LWP 373 stopped
359.815095   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
359.815349   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.815618   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
359.815872   [threads] resume_one_thread: leaving LWP 374 stopped
359.816122   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
359.816390   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.816660   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
359.817016   [threads] resume_one_thread: leaving LWP 375 stopped
359.817289   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
359.817563   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.817838   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
359.818082   [threads] resume_one_thread: leaving LWP 376 stopped
359.818348   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
359.818617   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.818962   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
359.819239   [threads] resume_one_thread: leaving LWP 377 stopped
359.819488   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
359.819763   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.820119   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
359.820380   [threads] resume_one_thread: leaving LWP 378 stopped
359.820646   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
359.820918   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.821180   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
359.821540   [threads] resume_one_thread: leaving LWP 379 stopped
359.821792   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
359.822069   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.822331   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
359.822591   [threads] resume_one_thread: leaving LWP 380 stopped
359.822903   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
359.823195   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.823461   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
359.823721   [threads] resume_one_thread: leaving LWP 381 stopped
359.823978   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
359.824250   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.824510   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
359.824770   [threads] resume_one_thread: leaving LWP 382 stopped
359.825030   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
359.825285   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.825563   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
359.825820   [threads] resume_one_thread: leaving LWP 383 stopped
359.826067   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
359.826334   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.826607   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
359.826864   [threads] resume_one_thread: leaving LWP 384 stopped
359.827107   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
359.827374   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.827922   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
359.828198   [threads] resume_one_thread: leaving LWP 385 stopped
359.828562   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
359.828936   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.829213   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
359.829474   [threads] resume_one_thread: leaving LWP 386 stopped
359.829724   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
359.830250   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.830599   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
359.830871   [threads] resume_one_thread: leaving LWP 387 stopped
359.831133   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
359.831489   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.831751   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
359.832014   [threads] resume_one_thread: leaving LWP 388 stopped
359.832276   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
359.832562   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.832992   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
359.833247   [threads] resume_one_thread: leaving LWP 389 stopped
359.833511   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
359.833784   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.834150   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
359.834469   [threads] resume_one_thread: leaving LWP 390 stopped
359.834709   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
359.834944   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.835173   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
359.835399   [threads] resume_one_thread: leaving LWP 391 stopped
359.835621   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
359.835846   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.836205   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
359.836422   [threads] resume_one_thread: leaving LWP 392 stopped
359.836642   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
359.836870   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.837253   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
359.837584   [threads] resume_one_thread: leaving LWP 393 stopped
359.837808   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
359.838038   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.838270   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
359.838489   [threads] resume_one_thread: leaving LWP 394 stopped
359.838709   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
359.838939   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.839220   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
359.839451   [threads] resume_one_thread: leaving LWP 395 stopped
359.839861   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
359.840227   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.840495   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
359.840762   [threads] resume_one_thread: leaving LWP 396 stopped
359.841023   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
359.841284   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.841559   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
359.841816   [threads] resume_one_thread: leaving LWP 397 stopped
359.842062   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
359.842458   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.842733   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
359.842980   [threads] resume_one_thread: leaving LWP 398 stopped
359.843243   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
359.843521   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.843868   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
359.844118   [threads] resume_one_thread: leaving LWP 399 stopped
359.844488   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
359.844752   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.845031   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
359.845273   [threads] resume_one_thread: leaving LWP 400 stopped
359.845541   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
359.845880   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.846160   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
359.846432   [threads] resume_one_thread: leaving LWP 401 stopped
359.846691   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
359.847155   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.847420   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
359.847689   [threads] resume_one_thread: leaving LWP 403 stopped
359.847953   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
359.848228   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.848612   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
359.848864   [threads] resume_one_thread: leaving LWP 404 stopped
359.849239   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
359.849513   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.849774   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
359.850099   [threads] resume_one_thread: leaving LWP 405 stopped
359.850497   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
359.850886   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.851163   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
359.851489   [threads] resume_one_thread: leaving LWP 406 stopped
359.851745   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
359.852018   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.852291   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
359.852666   [threads] resume_one_thread: leaving LWP 407 stopped
359.852939   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
359.853194   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.853618   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
359.853873   [threads] resume_one_thread: leaving LWP 408 stopped
359.854141   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
359.854413   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.854685   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
359.854933   [threads] resume_one_thread: leaving LWP 409 stopped
359.855194   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
359.855465   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
359.855741   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
359.855990   [threads] resume_one_thread: leaving LWP 410 stopped
359.856254   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
359.856525   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.856796   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
359.857045   [threads] resume_one_thread: leaving LWP 411 stopped
359.857310   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
359.857578   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.857835   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
359.858094   [threads] resume_one_thread: leaving LWP 412 stopped
359.858353   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
359.858621   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.858881   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
359.859146   [threads] resume_one_thread: leaving LWP 414 stopped
359.859645   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
359.859986   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.860320   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
359.860565   [threads] resume_one_thread: leaving LWP 433 stopped
359.860831   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
359.861100   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.861377   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
359.861621   [threads] resume_one_thread: leaving LWP 436 stopped
359.861883   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
359.862152   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.862415   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
359.862672   [threads] resume_one_thread: leaving LWP 437 stopped
359.862919   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
359.863188   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.863462   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
359.863911   [threads] resume_one_thread: leaving LWP 483 stopped
359.864208   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
359.864487   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.864762   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
359.865005   [threads] resume_one_thread: leaving LWP 484 stopped
359.865347   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
359.865713   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.865992   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
359.866237   [threads] resume_one_thread: leaving LWP 493 stopped
359.866504   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
359.866867   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.867148   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
359.867405   [threads] resume_one_thread: leaving LWP 508 stopped
359.867672   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
359.868150   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.868411   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
359.868670   [threads] resume_one_thread: leaving LWP 613 stopped
359.868918   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
359.869186   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.869458   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
359.869816   [threads] resume_one_thread: leaving LWP 624 stopped
359.870133   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
359.870477   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.870759   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
359.871116   [threads] resume_one_thread: leaving LWP 655 stopped
359.871469   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
359.871750   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.872024   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
359.872265   [threads] resume_one_thread: leaving LWP 660 stopped
359.872528   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
359.872907   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.873185   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
359.873431   [threads] resume_one_thread: leaving LWP 661 stopped
359.873693   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
359.873966   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.874235   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
359.874495   [threads] resume_one_thread: leaving LWP 1074 stopped
359.874741   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
359.875012   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.875285   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
359.875688   [threads] resume_one_thread: leaving LWP 1118 stopped
359.875962   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
359.876235   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.876608   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
359.877024   [threads] resume_one_thread: leaving LWP 1293 stopped
359.877292   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 1
359.877568   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
359.878031   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: thread->last_resume_kind 0, line 4717
359.878282   [threads] resume_one_thread: leaving LWP 2999 stopped
359.878545   [threads] operator(): [zyan1]  thread LWP 3020.3020 is going to call resume_one_thread, leave_all_stopped 1
359.878886   [threads] resume_one_thread: [zyan1]  thread LWP 3020.3020: 4624
359.879149 [threads] resume: exit
359.879389 [threads] wait_1: enter
359.879647   [threads] wait_1: [<all threads>]
359.879922   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.880257   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.880695   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
359.881021   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
359.881301   [threads] wait_for_event_filtered: Got a pending child 316
359.881558   [threads] wait_for_event_filtered: Got an event from pending child 316 (117f)
359.881816   [threads] wait_1: Ignored signal 17 for LWP 316.
359.882305   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.882588   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
359.882830   [threads] resume_one_lwp_throw: Resuming lwp 316 (continue, signal 17, stop not expected)
359.883244   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.316
359.883522 [threads] wait_1: exit
359.883764 [threads] wait_1: enter
359.884021   [threads] wait_1: [<all threads>]
359.884361   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
359.884760   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
359.885146   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
359.885435   [threads] wait_for_event_filtered: Got a pending child 410
359.885678   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
359.886005   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3020.3020.0
359.886288   [threads] wait_1: Hit a non-gdbserver trap event.
359.886695   [threads] stop_all_lwps: enter
359.886938     [threads] stop_all_lwps: stop, except=none
359.887190     [threads] send_sigstop: Sending sigstop to lwp 316
sigchld_handler
359.887560     [threads] wait_for_sigstop: pulling events
359.888068     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 316, ERRNO-OK
359.888379     [threads] wait_for_event_filtered: waitpid 316 received SIGSTOP - Stopped (signal) (stopped)
359.889000     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
359.889255     [threads] get_pc: pc is 0x4e97c214
359.889470     [threads] filter_event: Expected stop.
359.889692     [threads] filter_event: SIGSTOP caught for LWP 316.316 while stopping threads.
359.890195     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.890866     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
359.891814     [threads] operator(): leader_pid=3020, leader_lp!=NULL=1, num_lwps=1, zombie=0
359.892159     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
359.892437     [threads] stop_all_lwps: setting stopping_threads back to !stopping
359.892658   [threads] stop_all_lwps: exit
359.893062   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
359.893311   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
359.893683   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
359.894002   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
359.894269   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
359.894553   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
359.894834   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
359.895090   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
359.895358   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
359.895626   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
359.895983   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
359.896245   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
359.896517   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
359.896858   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
359.897133   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
359.897499   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
359.897773   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
359.898045   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
359.898320   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
359.898711   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
359.898983   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
359.899256   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
359.899515   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
359.899846   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
359.900475   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
359.900762   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
359.901170   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
359.901540   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
359.901813   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
359.902088   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
359.902344   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
359.902616   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
359.902884   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
359.903157   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
359.903414   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
359.903685   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
359.903954   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
359.904222   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
359.904481   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
359.904751   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
359.905021   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
359.905292   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
359.905551   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
359.905822   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
359.906429   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
359.906697   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
359.907145   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
359.907414   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
359.907685   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
359.907970   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
359.908300   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
359.908634   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
359.908915   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
359.909257   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
359.909544   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
359.909809   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
359.910125   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
359.910407   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
359.910854   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
359.911121   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
359.911393   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
359.911663   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
359.912037   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
359.912421   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
359.912681   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
359.912953   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
359.913221   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
359.913473   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
359.913746   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
359.914017   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
359.914271   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
359.914689   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
359.914947   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
359.915220   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
359.915557   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3020 needs to move out of the jump pad... no
359.916127   [threads] wait_1: ret = LWP 316.410, status->kind = VFORKED, child_ptid = 3020.3020.0
359.916419 [threads] wait_1: exit
359.916747 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:5
359.918497 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.918770 [threads] handle_serial_event: handling possible serial event
359.919283 [threads] write_memory: Writing 0023 to 0x0045b444 in process 316
359.920421 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.920816 [threads] handle_serial_event: handling possible serial event
359.921301 [threads] write_memory: Writing 7047 to 0x4e90bb30 in process 316
359.922377 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.922747 [threads] handle_serial_event: handling possible serial event
359.923115 [threads] write_memory: Writing 38b5 to 0x4e98a7d8 in process 316
359.924271 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.924523 [threads] handle_serial_event: handling possible serial event
359.925016 [threads] write_memory: Writing 08b5 to 0x4ea6e998 in process 316
359.926231 [event-loop] handle_file_event: invoking fd file handler `remote-net`
359.926478 [threads] handle_serial_event: handling possible serial event
Detaching from process 3020
359.926951 [threads] stop_tracing: Tracing is already off, ignoring
359.927218 [threads] stop_all_lwps: enter
359.927537   [threads] stop_all_lwps: stop, except=none
359.927867   [threads] wait_for_sigstop: pulling events
359.928227   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
359.929103   [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
359.929923   [threads] operator(): leader_pid=3020, leader_lp!=NULL=1, num_lwps=1, zombie=0
359.930449   [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
359.930719   [threads] stop_all_lwps: setting stopping_threads back to !stopping
359.931085 [threads] stop_all_lwps: exit
359.931407 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
359.931696 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
359.932091 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
359.932351 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
359.932629 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
359.932980 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
359.933336 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
359.933606 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
359.933877 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
359.934145 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
359.934397 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
359.934764 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
359.935041 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
359.935314 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
359.935582 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
359.935845 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
359.936225 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
359.936484 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
359.936833 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
359.937220 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
359.937477 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
359.937753 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
359.938025 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
359.938445 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
359.938790 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
359.939048 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
359.939318 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
359.939588 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
359.939946 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
359.940396 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
359.940691 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
359.941077 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
359.941370 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
359.941640 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
359.941916 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
359.942172 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
359.942582 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
359.942844 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
359.943119 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
359.943389 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
359.943801 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
359.944042 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
359.944274 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
359.944505 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
359.944879 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
359.945113 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
359.945339 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
359.945564 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
359.945791 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
359.946138 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
359.946470 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
359.946704 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
359.946933 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
359.947164 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
359.947402 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
359.947632 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
359.947861 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
359.948088 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
359.948328 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
359.948613 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
359.948845 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
359.949125 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
359.949630 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
359.949907 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
359.950229 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
359.950513 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
359.950785 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
359.951056 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
359.951317 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
359.951792 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
359.952185 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
359.952449 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
359.952723 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
359.953063 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
359.953350 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
359.953759 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3020 needs to move out of the jump pad... no
359.960299 [threads] detach_one_lwp: PTRACE_DETACH (LWP 3020.3020, Unknown signal 0, 0) (OK)
359.960453 [threads] delete_lwp: deleting 3020
359.960763 [threads] unstop_all_lwps: enter
359.960852   [threads] unstop_all_lwps: except=nullptr
359.960911   [threads] proceed_one_lwp: lwp 316
359.960964   [threads] proceed_one_lwp:    client wants LWP to remain 316 stopped
359.961023   [threads] proceed_one_lwp: lwp 349
359.961076   [threads] proceed_one_lwp:    client wants LWP to remain 349 stopped
359.961132   [threads] proceed_one_lwp: lwp 350
359.961202   [threads] proceed_one_lwp:    client wants LWP to remain 350 stopped
359.961291   [threads] proceed_one_lwp: lwp 351
359.961347   [threads] proceed_one_lwp:    client wants LWP to remain 351 stopped
359.961452   [threads] proceed_one_lwp: lwp 352
359.961576   [threads] proceed_one_lwp:    client wants LWP to remain 352 stopped
359.961681   [threads] proceed_one_lwp: lwp 357
359.961784   [threads] proceed_one_lwp:    client wants LWP to remain 357 stopped
359.961845   [threads] proceed_one_lwp: lwp 358
359.961899   [threads] proceed_one_lwp:    client wants LWP to remain 358 stopped
359.961999   [threads] proceed_one_lwp: lwp 359
359.962119   [threads] proceed_one_lwp:    client wants LWP to remain 359 stopped
359.962201   [threads] proceed_one_lwp: lwp 360
359.962257   [threads] proceed_one_lwp:    client wants LWP to remain 360 stopped
359.962311   [threads] proceed_one_lwp: lwp 361
359.962363   [threads] proceed_one_lwp:    client wants LWP to remain 361 stopped
359.962419   [threads] proceed_one_lwp: lwp 364
359.962472   [threads] proceed_one_lwp:    client wants LWP to remain 364 stopped
359.962574   [threads] proceed_one_lwp: lwp 365
359.962629   [threads] proceed_one_lwp:    client wants LWP to remain 365 stopped
359.962684   [threads] proceed_one_lwp: lwp 366
359.962737   [threads] proceed_one_lwp:    client wants LWP to remain 366 stopped
359.962790   [threads] proceed_one_lwp: lwp 367
359.962842   [threads] proceed_one_lwp:    client wants LWP to remain 367 stopped
359.962895   [threads] proceed_one_lwp: lwp 368
359.962946   [threads] proceed_one_lwp:    client wants LWP to remain 368 stopped
359.963001   [threads] proceed_one_lwp: lwp 369
359.963053   [threads] proceed_one_lwp:    client wants LWP to remain 369 stopped
359.963107   [threads] proceed_one_lwp: lwp 370
359.963158   [threads] proceed_one_lwp:    client wants LWP to remain 370 stopped
359.963212   [threads] proceed_one_lwp: lwp 371
359.963263   [threads] proceed_one_lwp:    client wants LWP to remain 371 stopped
359.963316   [threads] proceed_one_lwp: lwp 372
359.963366   [threads] proceed_one_lwp:    client wants LWP to remain 372 stopped
359.963419   [threads] proceed_one_lwp: lwp 373
359.963473   [threads] proceed_one_lwp:    client wants LWP to remain 373 stopped
359.963526   [threads] proceed_one_lwp: lwp 374
359.963595   [threads] proceed_one_lwp:    client wants LWP to remain 374 stopped
359.963659   [threads] proceed_one_lwp: lwp 375
359.963740   [threads] proceed_one_lwp:    client wants LWP to remain 375 stopped
359.963799   [threads] proceed_one_lwp: lwp 376
359.963851   [threads] proceed_one_lwp:    client wants LWP to remain 376 stopped
359.963904   [threads] proceed_one_lwp: lwp 377
359.963956   [threads] proceed_one_lwp:    client wants LWP to remain 377 stopped
359.964010   [threads] proceed_one_lwp: lwp 378
359.964061   [threads] proceed_one_lwp:    client wants LWP to remain 378 stopped
359.964116   [threads] proceed_one_lwp: lwp 379
359.964166   [threads] proceed_one_lwp:    client wants LWP to remain 379 stopped
359.964219   [threads] proceed_one_lwp: lwp 380
359.964271   [threads] proceed_one_lwp:    client wants LWP to remain 380 stopped
359.964324   [threads] proceed_one_lwp: lwp 381
359.964374   [threads] proceed_one_lwp:    client wants LWP to remain 381 stopped
359.964427   [threads] proceed_one_lwp: lwp 382
359.964477   [threads] proceed_one_lwp:    client wants LWP to remain 382 stopped
359.964529   [threads] proceed_one_lwp: lwp 383
359.964580   [threads] proceed_one_lwp:    client wants LWP to remain 383 stopped
359.964632   [threads] proceed_one_lwp: lwp 384
359.964684   [threads] proceed_one_lwp:    client wants LWP to remain 384 stopped
359.964739   [threads] proceed_one_lwp: lwp 385
359.964791   [threads] proceed_one_lwp:    client wants LWP to remain 385 stopped
359.964843   [threads] proceed_one_lwp: lwp 386
359.964894   [threads] proceed_one_lwp:    client wants LWP to remain 386 stopped
359.964947   [threads] proceed_one_lwp: lwp 387
359.964998   [threads] proceed_one_lwp:    client wants LWP to remain 387 stopped
359.965051   [threads] proceed_one_lwp: lwp 388
359.965102   [threads] proceed_one_lwp:    client wants LWP to remain 388 stopped
359.965153   [threads] proceed_one_lwp: lwp 389
359.965205   [threads] proceed_one_lwp:    client wants LWP to remain 389 stopped
359.965257   [threads] proceed_one_lwp: lwp 390
359.965308   [threads] proceed_one_lwp:    client wants LWP to remain 390 stopped
359.965360   [threads] proceed_one_lwp: lwp 391
359.965413   [threads] proceed_one_lwp:    client wants LWP to remain 391 stopped
359.965466   [threads] proceed_one_lwp: lwp 392
359.965519   [threads] proceed_one_lwp:    client wants LWP to remain 392 stopped
359.965573   [threads] proceed_one_lwp: lwp 393
359.965627   [threads] proceed_one_lwp:    client wants LWP to remain 393 stopped
359.965683   [threads] proceed_one_lwp: lwp 394
359.965735   [threads] proceed_one_lwp:    client wants LWP to remain 394 stopped
359.965788   [threads] proceed_one_lwp: lwp 395
359.965839   [threads] proceed_one_lwp:    client wants LWP to remain 395 stopped
359.965892   [threads] proceed_one_lwp: lwp 396
359.965943   [threads] proceed_one_lwp:    client wants LWP to remain 396 stopped
359.966002   [threads] proceed_one_lwp: lwp 397
359.966056   [threads] proceed_one_lwp:    client wants LWP to remain 397 stopped
359.966111   [threads] proceed_one_lwp: lwp 398
359.966164   [threads] proceed_one_lwp:    client wants LWP to remain 398 stopped
359.966219   [threads] proceed_one_lwp: lwp 399
359.966272   [threads] proceed_one_lwp:    client wants LWP to remain 399 stopped
359.969664   [threads] proceed_one_lwp: lwp 400
359.971627   [threads] proceed_one_lwp:    client wants LWP to remain 400 stopped
359.973544   [threads] proceed_one_lwp: lwp 401
359.975379   [threads] proceed_one_lwp:    client wants LWP to remain 401 stopped
359.976828   [threads] proceed_one_lwp: lwp 403
359.977188   [threads] proceed_one_lwp:    client wants LWP to remain 403 stopped
359.977924   [threads] proceed_one_lwp: lwp 404
359.980783   [threads] proceed_one_lwp:    client wants LWP to remain 404 stopped
359.983806   [threads] proceed_one_lwp: lwp 405
359.984654   [threads] proceed_one_lwp:    client wants LWP to remain 405 stopped
359.985287   [threads] proceed_one_lwp: lwp 406
359.986136   [threads] proceed_one_lwp:    client wants LWP to remain 406 stopped
359.986464   [threads] proceed_one_lwp: lwp 407
359.986747   [threads] proceed_one_lwp:    client wants LWP to remain 407 stopped
359.987489   [threads] proceed_one_lwp: lwp 408
359.988165   [threads] proceed_one_lwp:    client wants LWP to remain 408 stopped
359.988473   [threads] proceed_one_lwp: lwp 409
359.989078   [threads] proceed_one_lwp:    client wants LWP to remain 409 stopped
359.989365   [threads] proceed_one_lwp: lwp 410
359.990136   [threads] proceed_one_lwp:    client wants LWP to remain 410 stopped
359.990513   [threads] proceed_one_lwp: lwp 411
359.990773   [threads] proceed_one_lwp:    client wants LWP to remain 411 stopped
359.991487   [threads] proceed_one_lwp: lwp 412
359.991825   [threads] proceed_one_lwp:    client wants LWP to remain 412 stopped
359.992611   [threads] proceed_one_lwp: lwp 414
359.992906   [threads] proceed_one_lwp:    client wants LWP to remain 414 stopped
359.993685   [threads] proceed_one_lwp: lwp 433
359.993934   [threads] proceed_one_lwp:    client wants LWP to remain 433 stopped
359.994605   [threads] proceed_one_lwp: lwp 436
359.994926   [threads] proceed_one_lwp:    client wants LWP to remain 436 stopped
359.995194   [threads] proceed_one_lwp: lwp 437
359.995857   [threads] proceed_one_lwp:    client wants LWP to remain 437 stopped
359.996102   [threads] proceed_one_lwp: lwp 483
359.996752   [threads] proceed_one_lwp:    client wants LWP to remain 483 stopped
359.997040   [threads] proceed_one_lwp: lwp 484
359.997651   [threads] proceed_one_lwp:    client wants LWP to remain 484 stopped
359.997911   [threads] proceed_one_lwp: lwp 493
360.002817   [threads] proceed_one_lwp:    client wants LWP to remain 493 stopped
360.004652   [threads] proceed_one_lwp: lwp 508
360.004908   [threads] proceed_one_lwp:    client wants LWP to remain 508 stopped
360.005572   [threads] proceed_one_lwp: lwp 613
360.005859   [threads] proceed_one_lwp:    client wants LWP to remain 613 stopped
360.006103   [threads] proceed_one_lwp: lwp 624
360.006749   [threads] proceed_one_lwp:    client wants LWP to remain 624 stopped
360.007008   [threads] proceed_one_lwp: lwp 655
360.007598   [threads] proceed_one_lwp:    client wants LWP to remain 655 stopped
360.007847   [threads] proceed_one_lwp: lwp 660
360.008434   [threads] proceed_one_lwp:    client wants LWP to remain 660 stopped
360.008680   [threads] proceed_one_lwp: lwp 661
360.009265   [threads] proceed_one_lwp:    client wants LWP to remain 661 stopped
360.009509   [threads] proceed_one_lwp: lwp 1074
360.010203   [threads] proceed_one_lwp:    client wants LWP to remain 1074 stopped
360.011010   [threads] proceed_one_lwp: lwp 1118
360.011341   [threads] proceed_one_lwp:    client wants LWP to remain 1118 stopped
360.012051   [threads] proceed_one_lwp: lwp 1293
360.012343   [threads] proceed_one_lwp:    client wants LWP to remain 1293 stopped
360.013493   [threads] proceed_one_lwp: lwp 2999
360.013793   [threads] proceed_one_lwp:    client wants LWP to remain 2999 stopped
360.014040 [threads] unstop_all_lwps: exit
360.015167 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.015469 [threads] handle_serial_event: handling possible serial event
360.015954 [threads] resume: enter
360.016811   [threads] thread_needs_step_over: Need step over [LWP 316]? Ignoring, should remain stopped
360.017763   [threads] thread_needs_step_over: Need step over [LWP 349]? Ignoring, should remain stopped
360.018047   [threads] thread_needs_step_over: Need step over [LWP 350]? Ignoring, should remain stopped
360.018643   [threads] thread_needs_step_over: Need step over [LWP 351]? Ignoring, should remain stopped
360.018906   [threads] thread_needs_step_over: Need step over [LWP 352]? Ignoring, should remain stopped
360.019502   [threads] thread_needs_step_over: Need step over [LWP 357]? Ignoring, should remain stopped
360.019769   [threads] thread_needs_step_over: Need step over [LWP 358]? Ignoring, should remain stopped
360.020495   [threads] thread_needs_step_over: Need step over [LWP 359]? Ignoring, should remain stopped
360.020759   [threads] thread_needs_step_over: Need step over [LWP 360]? Ignoring, should remain stopped
360.021401   [threads] thread_needs_step_over: Need step over [LWP 361]? Ignoring, should remain stopped
360.021664   [threads] thread_needs_step_over: Need step over [LWP 364]? Ignoring, should remain stopped
360.022286   [threads] thread_needs_step_over: Need step over [LWP 365]? Ignoring, should remain stopped
360.022547   [threads] thread_needs_step_over: Need step over [LWP 366]? Ignoring, should remain stopped
360.023149   [threads] thread_needs_step_over: Need step over [LWP 367]? Ignoring, should remain stopped
360.023406   [threads] thread_needs_step_over: Need step over [LWP 368]? Ignoring, should remain stopped
360.024021   [threads] thread_needs_step_over: Need step over [LWP 369]? Ignoring, should remain stopped
360.024279   [threads] thread_needs_step_over: Need step over [LWP 370]? Ignoring, should remain stopped
360.024885   [threads] thread_needs_step_over: Need step over [LWP 371]? Ignoring, should remain stopped
360.025138   [threads] thread_needs_step_over: Need step over [LWP 372]? Ignoring, should remain stopped
360.025752   [threads] thread_needs_step_over: Need step over [LWP 373]? Ignoring, should remain stopped
360.026329   [threads] thread_needs_step_over: Need step over [LWP 374]? Ignoring, should remain stopped
360.026610   [threads] thread_needs_step_over: Need step over [LWP 375]? Ignoring, should remain stopped
360.027181   [threads] thread_needs_step_over: Need step over [LWP 376]? Ignoring, should remain stopped
360.027462   [threads] thread_needs_step_over: Need step over [LWP 377]? Ignoring, should remain stopped
360.028062   [threads] thread_needs_step_over: Need step over [LWP 378]? Ignoring, should remain stopped
360.028325   [threads] thread_needs_step_over: Need step over [LWP 379]? Ignoring, should remain stopped
360.028921   [threads] thread_needs_step_over: Need step over [LWP 380]? Ignoring, should remain stopped
360.029175   [threads] thread_needs_step_over: Need step over [LWP 381]? Ignoring, should remain stopped
360.029768   [threads] thread_needs_step_over: Need step over [LWP 382]? Ignoring, should remain stopped
360.030493   [threads] thread_needs_step_over: Need step over [LWP 383]? Ignoring, should remain stopped
360.030786   [threads] thread_needs_step_over: Need step over [LWP 384]? Ignoring, should remain stopped
360.031372   [threads] thread_needs_step_over: Need step over [LWP 385]? Ignoring, should remain stopped
360.031659   [threads] thread_needs_step_over: Need step over [LWP 386]? Ignoring, should remain stopped
360.032262   [threads] thread_needs_step_over: Need step over [LWP 387]? Ignoring, should remain stopped
360.032520   [threads] thread_needs_step_over: Need step over [LWP 388]? Ignoring, should remain stopped
360.033141   [threads] thread_needs_step_over: Need step over [LWP 389]? Ignoring, should remain stopped
360.033416   [threads] thread_needs_step_over: Need step over [LWP 390]? Ignoring, should remain stopped
360.034077   [threads] thread_needs_step_over: Need step over [LWP 391]? Ignoring, should remain stopped
360.034350   [threads] thread_needs_step_over: Need step over [LWP 392]? Ignoring, should remain stopped
360.034972   [threads] thread_needs_step_over: Need step over [LWP 393]? Ignoring, should remain stopped
360.035234   [threads] thread_needs_step_over: Need step over [LWP 394]? Ignoring, should remain stopped
360.035859   [threads] thread_needs_step_over: Need step over [LWP 395]? Ignoring, should remain stopped
360.036119   [threads] thread_needs_step_over: Need step over [LWP 396]? Ignoring, should remain stopped
360.036760   [threads] thread_needs_step_over: Need step over [LWP 397]? Ignoring, should remain stopped
360.037017   [threads] thread_needs_step_over: Need step over [LWP 398]? Ignoring, should remain stopped
360.037649   [threads] thread_needs_step_over: Need step over [LWP 399]? Ignoring, should remain stopped
360.038221   [threads] thread_needs_step_over: Need step over [LWP 400]? Ignoring, should remain stopped
360.038509   [threads] thread_needs_step_over: Need step over [LWP 401]? Ignoring, should remain stopped
360.039160   [threads] thread_needs_step_over: Need step over [LWP 403]? Ignoring, should remain stopped
360.039427   [threads] thread_needs_step_over: Need step over [LWP 404]? Ignoring, should remain stopped
360.040090   [threads] thread_needs_step_over: Need step over [LWP 405]? Ignoring, should remain stopped
360.040356   [threads] thread_needs_step_over: Need step over [LWP 406]? Ignoring, should remain stopped
360.040988   [threads] thread_needs_step_over: Need step over [LWP 407]? Ignoring, should remain stopped
360.041244   [threads] thread_needs_step_over: Need step over [LWP 408]? Ignoring, should remain stopped
360.041860   [threads] thread_needs_step_over: Need step over [LWP 409]? Ignoring, should remain stopped
360.042451   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.042731   [threads] get_pc: pc is 0x4e9fb3e8
360.043362   [threads] thread_needs_step_over: Need step over [LWP 410]? No, no breakpoint found at 0x4e9fb3e8
360.043634   [threads] thread_needs_step_over: Need step over [LWP 411]? Ignoring, should remain stopped
360.044269   [threads] thread_needs_step_over: Need step over [LWP 412]? Ignoring, should remain stopped
360.044536   [threads] thread_needs_step_over: Need step over [LWP 414]? Ignoring, should remain stopped
360.045166   [threads] thread_needs_step_over: Need step over [LWP 433]? Ignoring, should remain stopped
360.045426   [threads] thread_needs_step_over: Need step over [LWP 436]? Ignoring, should remain stopped
360.046035   [threads] thread_needs_step_over: Need step over [LWP 437]? Ignoring, should remain stopped
360.046294   [threads] thread_needs_step_over: Need step over [LWP 483]? Ignoring, should remain stopped
360.046939   [threads] thread_needs_step_over: Need step over [LWP 484]? Ignoring, should remain stopped
360.047657   [threads] thread_needs_step_over: Need step over [LWP 493]? Ignoring, should remain stopped
360.047953   [threads] thread_needs_step_over: Need step over [LWP 508]? Ignoring, should remain stopped
360.048215   [threads] thread_needs_step_over: Need step over [LWP 613]? Ignoring, should remain stopped
360.048995   [threads] thread_needs_step_over: Need step over [LWP 624]? Ignoring, should remain stopped
360.049673   [threads] thread_needs_step_over: Need step over [LWP 655]? Ignoring, should remain stopped
360.049974   [threads] thread_needs_step_over: Need step over [LWP 660]? Ignoring, should remain stopped
360.050816   [threads] thread_needs_step_over: Need step over [LWP 661]? Ignoring, should remain stopped
360.051081   [threads] thread_needs_step_over: Need step over [LWP 1074]? Ignoring, should remain stopped
360.051768   [threads] thread_needs_step_over: Need step over [LWP 1118]? Ignoring, should remain stopped
360.052103   [threads] thread_needs_step_over: Need step over [LWP 1293]? Ignoring, should remain stopped
360.052871   [threads] thread_needs_step_over: Need step over [LWP 2999]? Ignoring, should remain stopped
360.053141   [threads] resume: Resuming, no pending status or step over needed
360.053871   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
360.054154   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4624
360.060316   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
360.060690   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4624
360.061094   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
360.061362   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4624
360.062209   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
360.062527   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4624
360.063269   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
360.063572   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4624
360.064230   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
360.064486   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4624
360.065059   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
360.065310   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4624
360.065867   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
360.066434   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4624
360.066689   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
360.067252   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4624
360.067496   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
360.068052   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4624
360.068595   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
360.068850   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4624
360.069394   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
360.069645   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4624
360.070290   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
360.070873   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4624
360.071415   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
360.071685   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4624
360.072252   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
360.072507   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4624
360.073066   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
360.073318   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4624
360.073867   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
360.074422   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4624
360.074672   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
360.075219   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4624
360.075758   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
360.076029   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4624
360.076610   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
360.076865   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4624
360.077413   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
360.077662   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4624
360.078212   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
360.078759   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4624
360.079007   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
360.079547   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4624
360.079791   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
360.080478   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4624
360.080737   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
360.080991   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4624
360.081284   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
360.081541   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4624
360.081783   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
360.082027   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4624
360.082266   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
360.082515   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4624
360.082759   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
360.083013   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4624
360.083271   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
360.083530   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4624
360.083775   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
360.084022   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4624
360.084265   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
360.084519   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4624
360.084765   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
360.085010   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4624
360.085250   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
360.085494   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4624
360.085743   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
360.085994   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4624
360.086234   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
360.086479   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4624
360.086727   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
360.086978   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4624
360.087223   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
360.087471   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4624
360.087717   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
360.087960   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4624
360.088209   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
360.088461   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4624
360.088706   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
360.088953   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4624
360.089195   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
360.089439   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4624
360.089686   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
360.089935   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4624
360.090293   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
360.090540   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4624
360.090791   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
360.091045   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4624
360.091340   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
360.091590   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4624
360.091835   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
360.092079   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4624
360.092322   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
360.092578   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4624
360.092815   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
360.093064   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4624
360.093304   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
360.093545   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4624
360.093784   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
360.094031   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4624
360.094269   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
360.094513   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4624
360.094758   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
360.095011   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4624
360.095251   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
360.095496   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4624
360.095736   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
360.095981   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4624
360.096224   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
360.096468   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.096705   [threads] resume_one_thread: resuming LWP 410
360.096933   [threads] proceed_one_lwp: lwp 410
360.097190   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.097429   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.097656   [threads] resume_one_lwp_throw: Resuming lwp 410 (continue, signal 0, stop not expected)
360.098033 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.410
360.098456   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
360.098716   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4624
360.098959   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
360.099211   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4624
360.099449   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
360.099695   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4624
360.099939   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
360.100280   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4624
360.100532   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
360.100781   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4624
360.101022   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
360.101277   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4624
360.101524   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
360.101820   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4624
360.102080   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
360.102334   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4624
360.102583   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
360.102827   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4624
360.103069   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
360.103319   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4624
360.103567   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
360.103812   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4624
360.104053   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
360.104298   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4624
360.104547   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
360.104793   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4624
360.105032   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
360.105277   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4624
360.105522   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
360.105768   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4624
360.106008   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
360.106255   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4624
360.106495   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
360.106740   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4624
360.106979   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
360.107228   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4624
360.107472   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 0
360.107721   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4624
360.107951 [threads] resume: exit
360.108181 [threads] wait_1: enter
360.108418   [threads] wait_1: [<all threads>]
360.108918   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 410, ERRNO-OK
360.109212   [threads] wait_for_event_filtered: waitpid 410 received SIGTRAP - Trace/breakpoint trap (stopped)
360.114192   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.114495   [threads] get_pc: pc is 0x4e9fb3e8
360.114759   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.115002   [threads] get_pc: pc is 0x4e9fb3e8
360.115341   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
360.115816   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
360.116211   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
360.116507   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORK_DONE
360.116777   [threads] wait_1: Hit a non-gdbserver trap event.
360.117132   [threads] stop_all_lwps: enter
360.117309     [threads] stop_all_lwps: stop, except=none
360.117586     [threads] wait_for_sigstop: pulling events
360.117910     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
360.118629     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=75, zombie=0
360.119002     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
360.119312     [threads] stop_all_lwps: setting stopping_threads back to !stopping
360.119557   [threads] stop_all_lwps: exit
360.119965   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
360.120299   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
360.120553   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
360.120805   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
360.121056   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
360.121313   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
360.121565   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
360.121811   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
360.122057   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
360.122307   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
360.122558   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
360.122811   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
360.123060   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
360.123309   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
360.123556   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
360.123803   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
360.124051   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
360.124301   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
360.124553   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
360.124799   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
360.125043   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
360.125291   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
360.125543   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
360.125791   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
360.126093   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
360.126343   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
360.126594   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
360.126838   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
360.127088   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
360.127337   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
360.127591   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
360.127835   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
360.128079   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
360.128327   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
360.128576   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
360.128826   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
360.129071   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
360.129317   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
360.129563   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
360.129814   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
360.130164   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
360.130423   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
360.130674   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
360.130924   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
360.131169   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
360.131420   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
360.131666   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
360.131912   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
360.132157   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
360.132402   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
360.132647   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
360.132893   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
360.133137   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
360.133379   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
360.133625   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
360.133870   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
360.134113   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
360.134357   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
360.134600   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
360.134851   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
360.135098   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
360.135347   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
360.135589   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
360.135834   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
360.136086   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
360.136395   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
360.136646   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
360.136894   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
360.137146   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
360.137397   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
360.137652   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
360.137899   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
360.138151   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
360.138397   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
360.138642   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 2999 needs to move out of the jump pad... no
360.139069   [threads] wait_1: ret = LWP 316.410, status->kind = VFORK_DONE
360.139332 [threads] wait_1: exit
360.139621 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:7
360.141102 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.141389 [threads] handle_serial_event: handling possible serial event
360.142418 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.142690 [threads] handle_serial_event: handling possible serial event
360.143867 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.144133 [threads] handle_serial_event: handling possible serial event
360.145287 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.145558 [threads] handle_serial_event: handling possible serial event
360.146704 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.146971 [threads] handle_serial_event: handling possible serial event
360.147331 [threads] write_memory: Writing 01de to 0x0045b444 in process 316
360.148140 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.148401 [threads] handle_serial_event: handling possible serial event
360.149556 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.149830 [threads] handle_serial_event: handling possible serial event
360.150268 [threads] write_memory: Writing 01de to 0x4e90bb30 in process 316
360.151048 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.151314 [threads] handle_serial_event: handling possible serial event
360.152247 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.152509 [threads] handle_serial_event: handling possible serial event
360.152874 [threads] write_memory: Writing 01de to 0x4e98a7d8 in process 316
360.153748 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.154014 [threads] handle_serial_event: handling possible serial event
360.154835 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.155097 [threads] handle_serial_event: handling possible serial event
360.155452 [threads] write_memory: Writing 01de to 0x4ea6e998 in process 316
360.156345 [event-loop] handle_file_event: invoking fd file handler `remote-net`
360.156605 [threads] handle_serial_event: handling possible serial event
360.157115 [threads] resume: enter
360.157495   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
360.157760   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
360.158320   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.158602   [threads] get_pc: pc is 0x4e97c214
360.158847   [threads] thread_needs_step_over: Need step over [LWP 316]? No, no breakpoint found at 0x4e97c214
360.159110   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.159344   [threads] get_pc: pc is 0x4e97c214
360.159580   [threads] thread_needs_step_over: Need step over [LWP 349]? No, no breakpoint found at 0x4e97c214
360.159833   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.160181   [threads] get_pc: pc is 0x4e97c214
360.160429   [threads] thread_needs_step_over: Need step over [LWP 350]? No, no breakpoint found at 0x4e97c214
360.160691   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.160926   [threads] get_pc: pc is 0x4e97c216
360.161168   [threads] thread_needs_step_over: Need step over [LWP 351]? No, no breakpoint found at 0x4e97c216
360.161423   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.161654   [threads] get_pc: pc is 0x4e97c216
360.161889   [threads] thread_needs_step_over: Need step over [LWP 352]? No, no breakpoint found at 0x4e97c216
360.162148   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.162378   [threads] get_pc: pc is 0x4e97c216
360.162615   [threads] thread_needs_step_over: Need step over [LWP 357]? No, no breakpoint found at 0x4e97c216
360.162869   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.163098   [threads] get_pc: pc is 0x4e97c216
360.163345   [threads] thread_needs_step_over: Need step over [LWP 358]? No, no breakpoint found at 0x4e97c216
360.163608   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.163842   [threads] get_pc: pc is 0x4e97c216
360.164083   [threads] thread_needs_step_over: Need step over [LWP 359]? No, no breakpoint found at 0x4e97c216
360.168838   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.169087   [threads] get_pc: pc is 0x4e97c216
360.169331   [threads] thread_needs_step_over: Need step over [LWP 360]? No, no breakpoint found at 0x4e97c216
360.169599   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.169836   [threads] get_pc: pc is 0x4e97c214
360.170162   [threads] thread_needs_step_over: Need step over [LWP 361]? No, no breakpoint found at 0x4e97c214
360.170428   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.170677   [threads] get_pc: pc is 0x4e97c216
360.170920   [threads] thread_needs_step_over: Need step over [LWP 364]? No, no breakpoint found at 0x4e97c216
360.171180   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.171413   [threads] get_pc: pc is 0x4e97c216
360.171651   [threads] thread_needs_step_over: Need step over [LWP 365]? No, no breakpoint found at 0x4e97c216
360.171908   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.172144   [threads] get_pc: pc is 0x4e97c216
360.172431   [threads] thread_needs_step_over: Need step over [LWP 366]? No, no breakpoint found at 0x4e97c216
360.172703   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.172938   [threads] get_pc: pc is 0x4e97c214
360.173177   [threads] thread_needs_step_over: Need step over [LWP 367]? No, no breakpoint found at 0x4e97c214
360.173439   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.173680   [threads] get_pc: pc is 0x4eb53d34
360.173920   [threads] thread_needs_step_over: Need step over [LWP 368]? No, no breakpoint found at 0x4eb53d34
360.174174   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.174406   [threads] get_pc: pc is 0x4e97c214
360.174644   [threads] thread_needs_step_over: Need step over [LWP 369]? No, no breakpoint found at 0x4e97c214
360.174899   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.175131   [threads] get_pc: pc is 0x4e97c216
360.175374   [threads] thread_needs_step_over: Need step over [LWP 370]? No, no breakpoint found at 0x4e97c216
360.175635   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.175871   [threads] get_pc: pc is 0x4e97c214
360.176107   [threads] thread_needs_step_over: Need step over [LWP 371]? No, no breakpoint found at 0x4e97c214
360.176360   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.176590   [threads] get_pc: pc is 0x4e97c216
360.176832   [threads] thread_needs_step_over: Need step over [LWP 372]? No, no breakpoint found at 0x4e97c216
360.177085   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.177323   [threads] get_pc: pc is 0x4e97c216
360.177556   [threads] thread_needs_step_over: Need step over [LWP 373]? No, no breakpoint found at 0x4e97c216
360.177812   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.178047   [threads] get_pc: pc is 0x4e97c214
360.178281   [threads] thread_needs_step_over: Need step over [LWP 374]? No, no breakpoint found at 0x4e97c214
360.178533   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.178763   [threads] get_pc: pc is 0x4e97c216
360.179001   [threads] thread_needs_step_over: Need step over [LWP 375]? No, no breakpoint found at 0x4e97c216
360.179253   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.179482   [threads] get_pc: pc is 0x4e97c216
360.179722   [threads] thread_needs_step_over: Need step over [LWP 376]? No, no breakpoint found at 0x4e97c216
360.179988   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.180321   [threads] get_pc: pc is 0x4e97c216
360.180560   [threads] thread_needs_step_over: Need step over [LWP 377]? No, no breakpoint found at 0x4e97c216
360.180818   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.181054   [threads] get_pc: pc is 0x4e97c216
360.181290   [threads] thread_needs_step_over: Need step over [LWP 378]? No, no breakpoint found at 0x4e97c216
360.181545   [threads] linux_get_pc_32bit: stop pc is 0x45b45c
360.181773   [threads] get_pc: pc is 0x45b45c
360.182011   [threads] thread_needs_step_over: Need step over [LWP 379]? No, no breakpoint found at 0x45b45c
360.182269   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.182552   [threads] get_pc: pc is 0x4e97c214
360.182793   [threads] thread_needs_step_over: Need step over [LWP 380]? No, no breakpoint found at 0x4e97c214
360.183063   [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
360.183300   [threads] get_pc: pc is 0x4e9f6646
360.183535   [threads] thread_needs_step_over: Need step over [LWP 381]? No, no breakpoint found at 0x4e9f6646
360.183789   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.184017   [threads] get_pc: pc is 0x4e97c216
360.184260   [threads] thread_needs_step_over: Need step over [LWP 382]? No, no breakpoint found at 0x4e97c216
360.184514   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.184743   [threads] get_pc: pc is 0x4e97c214
360.184978   [threads] thread_needs_step_over: Need step over [LWP 383]? No, no breakpoint found at 0x4e97c214
360.185237   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.185470   [threads] get_pc: pc is 0x4e97c216
360.185711   [threads] thread_needs_step_over: Need step over [LWP 384]? No, no breakpoint found at 0x4e97c216
360.185968   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.186201   [threads] get_pc: pc is 0x4e97c216
360.186439   [threads] thread_needs_step_over: Need step over [LWP 385]? No, no breakpoint found at 0x4e97c216
360.186699   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.186932   [threads] get_pc: pc is 0x4e97c216
360.187169   [threads] thread_needs_step_over: Need step over [LWP 386]? No, no breakpoint found at 0x4e97c216
360.187425   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.187654   [threads] get_pc: pc is 0x4e97c216
360.187886   [threads] thread_needs_step_over: Need step over [LWP 387]? No, no breakpoint found at 0x4e97c216
360.188140   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.188374   [threads] get_pc: pc is 0x4e97c216
360.188610   [threads] thread_needs_step_over: Need step over [LWP 388]? No, no breakpoint found at 0x4e97c216
360.188861   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.189100   [threads] get_pc: pc is 0x4e97c216
360.189340   [threads] thread_needs_step_over: Need step over [LWP 389]? No, no breakpoint found at 0x4e97c216
360.189596   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.189826   [threads] get_pc: pc is 0x4e97c216
360.190124   [threads] thread_needs_step_over: Need step over [LWP 390]? No, no breakpoint found at 0x4e97c216
360.190385   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.190626   [threads] get_pc: pc is 0x4e97c216
360.190862   [threads] thread_needs_step_over: Need step over [LWP 391]? No, no breakpoint found at 0x4e97c216
360.191115   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.191346   [threads] get_pc: pc is 0x4e97c216
360.191586   [threads] thread_needs_step_over: Need step over [LWP 392]? No, no breakpoint found at 0x4e97c216
360.191842   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.192074   [threads] get_pc: pc is 0x4eb53d34
360.192307   [threads] thread_needs_step_over: Need step over [LWP 393]? No, no breakpoint found at 0x4eb53d34
360.192562   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.192790   [threads] get_pc: pc is 0x4e97c216
360.193027   [threads] thread_needs_step_over: Need step over [LWP 394]? No, no breakpoint found at 0x4e97c216
360.193281   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.193565   [threads] get_pc: pc is 0x4e97c216
360.193803   [threads] thread_needs_step_over: Need step over [LWP 395]? No, no breakpoint found at 0x4e97c216
360.194059   [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
360.194291   [threads] get_pc: pc is 0x4ea70c34
360.194530   [threads] thread_needs_step_over: Need step over [LWP 396]? No, no breakpoint found at 0x4ea70c34
360.194792   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.195031   [threads] get_pc: pc is 0x4e97c216
360.195273   [threads] thread_needs_step_over: Need step over [LWP 397]? No, no breakpoint found at 0x4e97c216
360.195530   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.195765   [threads] get_pc: pc is 0x4e97c216
360.196001   [threads] thread_needs_step_over: Need step over [LWP 398]? No, no breakpoint found at 0x4e97c216
360.196257   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.196493   [threads] get_pc: pc is 0x4eb53d34
360.196736   [threads] thread_needs_step_over: Need step over [LWP 399]? No, no breakpoint found at 0x4eb53d34
360.196994   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.197228   [threads] get_pc: pc is 0x4e97c214
360.197468   [threads] thread_needs_step_over: Need step over [LWP 400]? No, no breakpoint found at 0x4e97c214
360.197731   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.197969   [threads] get_pc: pc is 0x4e97c216
360.198207   [threads] thread_needs_step_over: Need step over [LWP 401]? No, no breakpoint found at 0x4e97c216
360.198463   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.198695   [threads] get_pc: pc is 0x4e97c216
360.198937   [threads] thread_needs_step_over: Need step over [LWP 403]? No, no breakpoint found at 0x4e97c216
360.199198   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.199431   [threads] get_pc: pc is 0x4e97c216
360.199666   [threads] thread_needs_step_over: Need step over [LWP 404]? No, no breakpoint found at 0x4e97c216
360.199925   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.200248   [threads] get_pc: pc is 0x4e97c216
360.200489   [threads] thread_needs_step_over: Need step over [LWP 405]? No, no breakpoint found at 0x4e97c216
360.200751   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.200989   [threads] get_pc: pc is 0x4e97c216
360.201226   [threads] thread_needs_step_over: Need step over [LWP 406]? No, no breakpoint found at 0x4e97c216
360.201480   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.201715   [threads] get_pc: pc is 0x4e97c214
360.201960   [threads] thread_needs_step_over: Need step over [LWP 407]? No, no breakpoint found at 0x4e97c214
360.202216   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.202447   [threads] get_pc: pc is 0x4e97c216
360.202681   [threads] thread_needs_step_over: Need step over [LWP 408]? No, no breakpoint found at 0x4e97c216
360.202934   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.203173   [threads] get_pc: pc is 0x4e97c216
360.203471   [threads] thread_needs_step_over: Need step over [LWP 409]? No, no breakpoint found at 0x4e97c216
360.203728   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.203958   [threads] get_pc: pc is 0x4e9fb3e8
360.204201   [threads] thread_needs_step_over: Need step over [LWP 410]? No, no breakpoint found at 0x4e9fb3e8
360.204451   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.204689   [threads] get_pc: pc is 0x4e97c214
360.204931   [threads] thread_needs_step_over: Need step over [LWP 411]? No, no breakpoint found at 0x4e97c214
360.205189   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.205418   [threads] get_pc: pc is 0x4e97c216
360.205653   [threads] thread_needs_step_over: Need step over [LWP 412]? No, no breakpoint found at 0x4e97c216
360.205908   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.206140   [threads] get_pc: pc is 0x4e97c216
360.206378   [threads] thread_needs_step_over: Need step over [LWP 414]? No, no breakpoint found at 0x4e97c216
360.206630   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.206860   [threads] get_pc: pc is 0x4e97c216
360.207095   [threads] thread_needs_step_over: Need step over [LWP 433]? No, no breakpoint found at 0x4e97c216
360.207352   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.207582   [threads] get_pc: pc is 0x4e97c214
360.207817   [threads] thread_needs_step_over: Need step over [LWP 436]? No, no breakpoint found at 0x4e97c214
360.208069   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.208302   [threads] get_pc: pc is 0x4e97c216
360.208536   [threads] thread_needs_step_over: Need step over [LWP 437]? No, no breakpoint found at 0x4e97c216
360.208790   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.209020   [threads] get_pc: pc is 0x4e97c216
360.209258   [threads] thread_needs_step_over: Need step over [LWP 483]? No, no breakpoint found at 0x4e97c216
360.209513   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.209744   [threads] get_pc: pc is 0x4e97c216
360.209979   [threads] thread_needs_step_over: Need step over [LWP 484]? No, no breakpoint found at 0x4e97c216
360.210289   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.210525   [threads] get_pc: pc is 0x4eb53d34
360.210763   [threads] thread_needs_step_over: Need step over [LWP 493]? No, no breakpoint found at 0x4eb53d34
360.211019   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.211252   [threads] get_pc: pc is 0x4e97c216
360.211491   [threads] thread_needs_step_over: Need step over [LWP 508]? No, no breakpoint found at 0x4e97c216
360.211744   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.211975   [threads] get_pc: pc is 0x4e97c216
360.212210   [threads] thread_needs_step_over: Need step over [LWP 613]? No, no breakpoint found at 0x4e97c216
360.212466   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.212696   [threads] get_pc: pc is 0x4e97c214
360.212933   [threads] thread_needs_step_over: Need step over [LWP 624]? No, no breakpoint found at 0x4e97c214
360.213188   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.213424   [threads] get_pc: pc is 0x4e97c214
360.213700   [threads] thread_needs_step_over: Need step over [LWP 655]? No, no breakpoint found at 0x4e97c214
360.213968   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.214204   [threads] get_pc: pc is 0x4e97c216
360.214450   [threads] thread_needs_step_over: Need step over [LWP 660]? No, no breakpoint found at 0x4e97c216
360.214716   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.214955   [threads] get_pc: pc is 0x4e97c216
360.215192   [threads] thread_needs_step_over: Need step over [LWP 661]? No, no breakpoint found at 0x4e97c216
360.215448   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.215686   [threads] get_pc: pc is 0x4e97c214
360.215922   [threads] thread_needs_step_over: Need step over [LWP 1074]? No, no breakpoint found at 0x4e97c214
360.216181   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.216417   [threads] get_pc: pc is 0x4e97c214
360.216654   [threads] thread_needs_step_over: Need step over [LWP 1118]? No, no breakpoint found at 0x4e97c214
360.216916   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.217145   [threads] get_pc: pc is 0x4e97c214
360.217386   [threads] thread_needs_step_over: Need step over [LWP 1293]? No, no breakpoint found at 0x4e97c214
360.217643   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7da
360.217883   [threads] get_pc: pc is 0x4e98a7da
360.218121   [threads] thread_needs_step_over: Need step over [LWP 2999]? No, no breakpoint found at 0x4e98a7da
360.218360   [threads] resume: Resuming, no pending status or step over needed
360.220160   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
360.220240   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.220305   [threads] resume_one_thread: resuming LWP 316
360.220355   [threads] proceed_one_lwp: lwp 316
360.220423   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.220478   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.220531   [threads] resume_one_lwp_throw: Resuming lwp 316 (continue, signal 0, stop not expected)
360.220719   [threads] resume_one_lwp_throw: sigchld_handler
[zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.316
360.222168   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
360.222726   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.223304   [threads] resume_one_thread: resuming LWP 349
360.223548   [threads] proceed_one_lwp: lwp 349
360.223782   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.224323   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.224667   [threads] resume_one_lwp_throw: Resuming lwp 349 (continue, signal 0, stop not expected)
360.225493   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.349
360.226099   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
360.226341   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.226977   [threads] resume_one_thread: resuming LWP 350
360.227509   [threads] proceed_one_lwp: lwp 350
360.227744   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.228349   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.228572   [threads] resume_one_lwp_throw: Resuming lwp 350 (continue, signal 0, stop not expected)
360.229266   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.350
360.229923   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
360.230239   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.230869   [threads] resume_one_thread: resuming LWP 351
360.231087   [threads] proceed_one_lwp: lwp 351
360.231630   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.231853   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.232369   [threads] resume_one_lwp_throw: Resuming lwp 351 (continue, signal 0, stop not expected)
360.233054   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.351
360.233323   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
360.233958   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.234188   [threads] resume_one_thread: resuming LWP 352
360.234708   [threads] proceed_one_lwp: lwp 352
360.234959   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.235556   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.235884   [threads] resume_one_lwp_throw: Resuming lwp 352 (continue, signal 0, stop not expected)
360.236608   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.352
360.237194   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
360.237434   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.237972   [threads] resume_one_thread: resuming LWP 357
360.238188   [threads] proceed_one_lwp: lwp 357
360.238720   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.238941   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.239450   [threads] resume_one_lwp_throw: Resuming lwp 357 (continue, signal 0, stop not expected)
360.239797   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.357
360.240097   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
360.240388   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.240642   [threads] resume_one_thread: resuming LWP 358
360.240882   [threads] proceed_one_lwp: lwp 358
360.241150   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.241408   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.241661   [threads] resume_one_lwp_throw: Resuming lwp 358 (continue, signal 0, stop not expected)
360.242128   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.358
360.242412   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
360.242689   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.242958   [threads] resume_one_thread: resuming LWP 359
360.243191   [threads] proceed_one_lwp: lwp 359
360.243460   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.243719   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.243960   [threads] resume_one_lwp_throw: Resuming lwp 359 (continue, signal 0, stop not expected)
360.244355   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.359
360.244642   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
360.244903   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.245171   [threads] resume_one_thread: resuming LWP 360
360.245422   [threads] proceed_one_lwp: lwp 360
360.245671   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.245926   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.246180   [threads] resume_one_lwp_throw: Resuming lwp 360 (continue, signal 0, stop not expected)
360.246561   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.360
360.246899   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
360.247187   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.247455   [threads] resume_one_thread: resuming LWP 361
360.247690   [threads] proceed_one_lwp: lwp 361
360.247950   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.248208   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.248446   [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
360.248839   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
360.249128   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
360.249410   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.249900   [threads] resume_one_thread: resuming LWP 364
360.250184   [threads] proceed_one_lwp: lwp 364
360.250465   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.250724   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.250963   [threads] resume_one_lwp_throw: Resuming lwp 364 (continue, signal 0, stop not expected)
360.251430   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.364
360.251743   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
360.252030   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.252300   [threads] resume_one_thread: resuming LWP 365
360.252537   [threads] proceed_one_lwp: lwp 365
360.252799   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.253052   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.253293   [threads] resume_one_lwp_throw: Resuming lwp 365 (continue, signal 0, stop not expected)
360.253812   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.365
360.254220   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
360.254527   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.254793   [threads] resume_one_thread: resuming LWP 366
360.255029   [threads] proceed_one_lwp: lwp 366
360.255295   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.255550   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.255788   [threads] resume_one_lwp_throw: Resuming lwp 366 (continue, signal 0, stop not expected)
360.256185   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.366
360.256468   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
360.256745   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.256995   [threads] resume_one_thread: resuming LWP 367
360.257245   [threads] proceed_one_lwp: lwp 367
360.257495   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.257755   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.258005   [threads] resume_one_lwp_throw: Resuming lwp 367 (continue, signal 0, stop not expected)
360.258570   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.367
360.258871   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
360.259149   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.259625   [threads] resume_one_thread: resuming LWP 368
360.259892   [threads] proceed_one_lwp: lwp 368
360.260210   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.260543   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.260950   [threads] resume_one_lwp_throw: Resuming lwp 368 (continue, signal 0, stop not expected)
360.261363   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.368
360.261626   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
360.262047   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.262505   [threads] resume_one_thread: resuming LWP 369
360.262730   [threads] proceed_one_lwp: lwp 369
360.262998   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.263256   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.263669   [threads] resume_one_lwp_throw: Resuming lwp 369 (continue, signal 0, stop not expected)
360.264082   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.369
360.264367   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
360.264648   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.264904   [threads] resume_one_thread: resuming LWP 370
360.265154   [threads] proceed_one_lwp: lwp 370
360.265531   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.265794   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.266045   [threads] resume_one_lwp_throw: Resuming lwp 370 (continue, signal 0, stop not expected)
360.266494   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.370
360.266811   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
360.267091   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.267340   [threads] resume_one_thread: resuming LWP 371
360.267588   [threads] proceed_one_lwp: lwp 371
360.267853   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.268096   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.268350   [threads] resume_one_lwp_throw: Resuming lwp 371 (continue, signal 0, stop not expected)
360.268831   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.371
360.269511   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
360.269780   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.270090   [threads] resume_one_thread: resuming LWP 372
360.270334   [threads] proceed_one_lwp: lwp 372
360.270801   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.271052   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.271307   [threads] resume_one_lwp_throw: Resuming lwp 372 (continue, signal 0, stop not expected)
360.271697   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.372
360.271998   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
360.272264   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.272601   [threads] resume_one_thread: resuming LWP 373
360.272867   [threads] proceed_one_lwp: lwp 373
360.273120   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.273590   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.273819   [threads] resume_one_lwp_throw: Resuming lwp 373 (continue, signal 0, stop not expected)
360.274220   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.373
360.274590   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
360.274836   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.275060   [threads] resume_one_thread: resuming LWP 374
360.275268   [threads] proceed_one_lwp: lwp 374
360.275493   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.275851   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.276061   [threads] resume_one_lwp_throw: Resuming lwp 374 (continue, signal 0, stop not expected)
360.276396   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.374
360.276778   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
360.277017   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.277242   [threads] resume_one_thread: resuming LWP 375
360.277458   [threads] proceed_one_lwp: lwp 375
360.277679   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.277916   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.278224   [threads] resume_one_lwp_throw: Resuming lwp 375 (continue, signal 0, stop not expected)
360.278708   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.375
360.278993   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
360.279469   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.279720   [threads] resume_one_thread: resuming LWP 376
360.279958   [threads] proceed_one_lwp: lwp 376
360.280423   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.280695   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.280935   [threads] resume_one_lwp_throw: Resuming lwp 376 (continue, signal 0, stop not expected)
360.281660   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.376
360.281960   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
360.282391   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.282666   [threads] resume_one_thread: resuming LWP 377
360.282906   [threads] proceed_one_lwp: lwp 377
360.283384   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.283642   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.283896   [threads] resume_one_lwp_throw: Resuming lwp 377 (continue, signal 0, stop not expected)
360.284290   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.377
360.284593   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
360.284867   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.285149   [threads] resume_one_thread: resuming LWP 378
360.285392   [threads] proceed_one_lwp: lwp 378
360.285657   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.285901   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.286155   [threads] resume_one_lwp_throw: Resuming lwp 378 (continue, signal 0, stop not expected)
360.290121   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.378
360.290255   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
360.290907   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.291159   [threads] resume_one_thread: resuming LWP 379
360.291740   [threads] proceed_one_lwp: lwp 379
360.291972   [threads] proceed_one_lwp:    stepping LWP 379, client wants it stepping
360.292566   [threads] linux_get_pc_32bit: stop pc is 0x45b45c
360.292901   [threads] linux_get_pc_32bit: stop pc is 0x45b45c
360.293638   [threads] set_single_step_breakpoint: [zyan1]  thread LWP 316.379
360.294338   [threads] write_memory: Writing 01de to 0x0045b460 in process 316
360.294987   [threads] linux_get_pc_32bit: stop pc is 0x45b45c
360.295601   [threads] resume_one_lwp_throw:   continue from pc 0x45b45c
360.295842   [threads] resume_one_lwp_throw: Resuming lwp 379 (continue, signal 0, stop not expected)
sigchld_handler
360.297164   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.379
360.297461   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
360.298072   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.298687   [threads] resume_one_thread: resuming LWP 380
360.298959   [threads] proceed_one_lwp: lwp 380
360.299218   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.299826   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.300522   [threads] resume_one_lwp_throw: Resuming lwp 380 (continue, signal 0, stop not expected)
360.301301   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.380
360.301606   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
360.302230   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.302848   [threads] resume_one_thread: resuming LWP 381
360.303133   [threads] proceed_one_lwp: lwp 381
360.303394   [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
360.304041   [threads] resume_one_lwp_throw:   continue from pc 0x4e9f6646
360.304625   [threads] resume_one_lwp_throw: Resuming lwp 381 (continue, signal 0, stop not expected)
360.305060   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.381
360.305726   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
360.306329   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.306574   [threads] resume_one_thread: resuming LWP 382
360.307174   [threads] proceed_one_lwp: lwp 382
360.307421   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.307970   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.308205   [threads] resume_one_lwp_throw: Resuming lwp 382 (continue, signal 0, stop not expected)
360.308991   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.382
360.309295   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
360.309558   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.309799   [threads] resume_one_thread: resuming LWP 383
360.310097   [threads] proceed_one_lwp: lwp 383
360.310355   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.310591   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.310818   [threads] resume_one_lwp_throw: Resuming lwp 383 (continue, signal 0, stop not expected)
360.312028   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.383
360.312329   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
360.312586   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.312828   [threads] resume_one_thread: resuming LWP 384
360.313064   [threads] proceed_one_lwp: lwp 384
360.313315   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.313548   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.313779   [threads] resume_one_lwp_throw: Resuming lwp 384 (continue, signal 0, stop not expected)
360.314204   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.384
360.314496   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
360.314759   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.314999   [threads] resume_one_thread: resuming LWP 385
360.315230   [threads] proceed_one_lwp: lwp 385
360.315480   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.315719   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.315950   [threads] resume_one_lwp_throw: Resuming lwp 385 (continue, signal 0, stop not expected)
360.316362   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.385
360.316650   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
360.316903   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.317146   [threads] resume_one_thread: resuming LWP 386
360.317377   [threads] proceed_one_lwp: lwp 386
360.317622   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.317862   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.318096   [threads] resume_one_lwp_throw: Resuming lwp 386 (continue, signal 0, stop not expected)
360.318676   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.386
360.318972   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
360.319230   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.319475   [threads] resume_one_thread: resuming LWP 387
360.319702   [threads] proceed_one_lwp: lwp 387
360.319958   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.320294   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.320539   [threads] resume_one_lwp_throw: Resuming lwp 387 (continue, signal 0, stop not expected)
360.320905   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.387
360.321182   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
360.321442   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.321690   [threads] resume_one_thread: resuming LWP 388
360.321919   [threads] proceed_one_lwp: lwp 388
360.322163   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.322395   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.322629   [threads] resume_one_lwp_throw: Resuming lwp 388 (continue, signal 0, stop not expected)
360.322989   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.388
360.323782   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
360.324054   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.324301   [threads] resume_one_thread: resuming LWP 389
360.324531   [threads] proceed_one_lwp: lwp 389
360.324782   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.325021   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.325253   [threads] resume_one_lwp_throw: Resuming lwp 389 (continue, signal 0, stop not expected)
360.325622   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.389
360.325904   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
360.326159   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.326401   [threads] resume_one_thread: resuming LWP 390
360.326634   [threads] proceed_one_lwp: lwp 390
360.326883   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.327116   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.327343   [threads] resume_one_lwp_throw: Resuming lwp 390 (continue, signal 0, stop not expected)
360.327753   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.390
360.332647   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
360.332928   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.333181   [threads] resume_one_thread: resuming LWP 391
360.333406   [threads] proceed_one_lwp: lwp 391
360.333656   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.333942   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.334176   [threads] resume_one_lwp_throw: Resuming lwp 391 (continue, signal 0, stop not expected)
360.334550   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.391
360.334826   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
360.335094   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.335344   [threads] resume_one_thread: resuming LWP 392
360.335567   [threads] proceed_one_lwp: lwp 392
360.335809   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.336046   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.336282   [threads] resume_one_lwp_throw: Resuming lwp 392 (continue, signal 0, stop not expected)
360.336641   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.392
360.336912   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
360.337164   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.337409   [threads] resume_one_thread: resuming LWP 393
360.337635   [threads] proceed_one_lwp: lwp 393
360.337887   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.338125   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.338355   [threads] resume_one_lwp_throw: Resuming lwp 393 (continue, signal 0, stop not expected)
360.338716   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.393
360.339034   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
360.339291   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.339529   [threads] resume_one_thread: resuming LWP 394
360.339761   [threads] proceed_one_lwp: lwp 394
360.340060   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.340307   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.340541   [threads] resume_one_lwp_throw: Resuming lwp 394 (continue, signal 0, stop not expected)
360.340957   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.394
360.341283   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
360.341545   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.341788   [threads] resume_one_thread: resuming LWP 395
360.342014   [threads] proceed_one_lwp: lwp 395
360.342262   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.342508   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.342738   [threads] resume_one_lwp_throw: Resuming lwp 395 (continue, signal 0, stop not expected)
360.343149   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.395
360.343428   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
360.343692   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.343938   [threads] resume_one_thread: resuming LWP 396
360.344167   [threads] proceed_one_lwp: lwp 396
360.344406   [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
360.344688   [threads] resume_one_lwp_throw:   continue from pc 0x4ea70c34
360.344937   [threads] resume_one_lwp_throw: Resuming lwp 396 (continue, signal 0, stop not expected)
360.345302   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.396
360.345573   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
360.345831   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.346069   [threads] resume_one_thread: resuming LWP 397
360.346300   [threads] proceed_one_lwp: lwp 397
360.346542   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.346779   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.347004   [threads] resume_one_lwp_throw: Resuming lwp 397 (continue, signal 0, stop not expected)
360.347416   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.397
360.347696   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
360.347952   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.348192   [threads] resume_one_thread: resuming LWP 398
360.348418   [threads] proceed_one_lwp: lwp 398
360.348668   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.348909   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.349142   [threads] resume_one_lwp_throw: Resuming lwp 398 (continue, signal 0, stop not expected)
360.349672   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.398
360.349987   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
360.350369   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.350614   [threads] resume_one_thread: resuming LWP 399
360.350846   [threads] proceed_one_lwp: lwp 399
360.351093   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.351334   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.351564   [threads] resume_one_lwp_throw: Resuming lwp 399 (continue, signal 0, stop not expected)
360.351979   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.399
360.352257   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
360.352513   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.352759   [threads] resume_one_thread: resuming LWP 400
360.352989   [threads] proceed_one_lwp: lwp 400
360.353233   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.353466   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.353693   [threads] resume_one_lwp_throw: Resuming lwp 400 (continue, signal 0, stop not expected)
360.354609   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.400
360.354934   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
360.355203   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.355446   [threads] resume_one_thread: resuming LWP 401
360.355726   [threads] proceed_one_lwp: lwp 401
360.355975   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.356215   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.356445   [threads] resume_one_lwp_throw: Resuming lwp 401 (continue, signal 0, stop not expected)
360.356863   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.401
360.357146   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
360.357401   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.357643   [threads] resume_one_thread: resuming LWP 403
360.357872   [threads] proceed_one_lwp: lwp 403
360.358124   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.358363   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.358594   [threads] resume_one_lwp_throw: Resuming lwp 403 (continue, signal 0, stop not expected)
360.358963   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.403
360.359242   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
360.359492   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.359735   [threads] resume_one_thread: resuming LWP 404
360.359969   [threads] proceed_one_lwp: lwp 404
360.360311   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.360550   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.360778   [threads] resume_one_lwp_throw: Resuming lwp 404 (continue, signal 0, stop not expected)
360.361138   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.404
360.361425   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
360.361692   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.361936   [threads] resume_one_thread: resuming LWP 405
360.362164   [threads] proceed_one_lwp: lwp 405
360.362410   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.362649   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.362879   [threads] resume_one_lwp_throw: Resuming lwp 405 (continue, signal 0, stop not expected)
360.363298   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.405
360.363580   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
360.363842   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.364091   [threads] resume_one_thread: resuming LWP 406
360.364320   [threads] proceed_one_lwp: lwp 406
360.364566   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.364796   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.365023   [threads] resume_one_lwp_throw: Resuming lwp 406 (continue, signal 0, stop not expected)
360.365436   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.406
360.365717   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
360.365976   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.366263   [threads] resume_one_thread: resuming LWP 407
360.366501   [threads] proceed_one_lwp: lwp 407
360.366752   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.366984   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.367211   [threads] resume_one_lwp_throw: Resuming lwp 407 (continue, signal 0, stop not expected)
360.367619   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.407
360.367897   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
360.368149   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.368393   [threads] resume_one_thread: resuming LWP 408
360.368627   [threads] proceed_one_lwp: lwp 408
360.368881   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.369118   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.369350   [threads] resume_one_lwp_throw: Resuming lwp 408 (continue, signal 0, stop not expected)
360.369709   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.408
360.369988   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
360.370402   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.370649   [threads] resume_one_thread: resuming LWP 409
360.370880   [threads] proceed_one_lwp: lwp 409
360.371134   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.371368   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.371786   [threads] resume_one_lwp_throw: Resuming lwp 409 (continue, signal 0, stop not expected)
360.380135   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.409
360.380774   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
360.381367   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.381604   [threads] resume_one_thread: resuming LWP 410
360.382151   [threads] proceed_one_lwp: lwp 410
360.382404   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.382986   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.383399   [threads] resume_one_lwp_throw: Resuming lwp 410 (continue, signal 0, stop not expected)
sigchld_handler
360.385267   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.410
360.386000   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
360.386295   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.386535   [threads] resume_one_thread: resuming LWP 411
360.387155   [threads] proceed_one_lwp: lwp 411
360.387859   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.388110   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.388640   [threads] resume_one_lwp_throw: Resuming lwp 411 (continue, signal 0, stop not expected)
360.389033   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.411
360.389767   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
360.390089   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.390823   [threads] resume_one_thread: resuming LWP 412
360.391672   [threads] proceed_one_lwp: lwp 412
360.391915   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.392138   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.392677   [threads] resume_one_lwp_throw: Resuming lwp 412 (continue, signal 0, stop not expected)
360.393185   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.412
360.393817   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
360.394403   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.394638   [threads] resume_one_thread: resuming LWP 414
360.395209   [threads] proceed_one_lwp: lwp 414
360.395902   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.396174   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.396915   [threads] resume_one_lwp_throw: Resuming lwp 414 (continue, signal 0, stop not expected)
360.397291   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.414
360.397948   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
360.398199   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.398803   [threads] resume_one_thread: resuming LWP 433
360.399025   [threads] proceed_one_lwp: lwp 433
360.399728   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.400340   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.400593   [threads] resume_one_lwp_throw: Resuming lwp 433 (continue, signal 0, stop not expected)
360.401060 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.433
360.402128   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
360.402709   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.403078   [threads] resume_one_thread: resuming LWP 436
360.403627   [threads] proceed_one_lwp: lwp 436
360.403892   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.404423   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.404671   [threads] resume_one_lwp_throw: Resuming lwp 436 (continue, signal 0, stop not expected)
360.405489   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.436
360.405770   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
360.406474   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.407148   [threads] resume_one_thread: resuming LWP 437
360.407373   [threads] proceed_one_lwp: lwp 437
360.407941   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.408163   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.408797   [threads] resume_one_lwp_throw: Resuming lwp 437 (continue, signal 0, stop not expected)
360.409527   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.437
360.409815   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
360.410621   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.410864   [threads] resume_one_thread: resuming LWP 483
360.411080   [threads] proceed_one_lwp: lwp 483
360.411339   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.411959   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.412182   [threads] resume_one_lwp_throw: Resuming lwp 483 (continue, signal 0, stop not expected)
360.412884   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.483
360.413528   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
360.413776   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.414565   [threads] resume_one_thread: resuming LWP 484
360.415189   [threads] proceed_one_lwp: lwp 484
360.415429   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.415989   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.416214   [threads] resume_one_lwp_throw: Resuming lwp 484 (continue, signal 0, stop not expected)
360.417015   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.484
360.417637   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
360.418215   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.418477   [threads] resume_one_thread: resuming LWP 493
360.419311   [threads] proceed_one_lwp: lwp 493
360.419553   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.420430   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.421159   [threads] resume_one_lwp_throw: Resuming lwp 493 (continue, signal 0, stop not expected)
360.421542   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.493
360.422240   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
360.422957   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.423528   [threads] resume_one_thread: resuming LWP 508
360.423754   [threads] proceed_one_lwp: lwp 508
360.424380   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.424610   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.424825   [threads] resume_one_lwp_throw: Resuming lwp 508 (continue, signal 0, stop not expected)
360.425528   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.508
360.426266   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
360.426860   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.427090   [threads] resume_one_thread: resuming LWP 613
360.427660   [threads] proceed_one_lwp: lwp 613
360.427896   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.428553   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.428774   [threads] resume_one_lwp_throw: Resuming lwp 613 (continue, signal 0, stop not expected)
360.429502   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.613
360.430281   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
360.430557   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.431190   [threads] resume_one_thread: resuming LWP 624
360.431420   [threads] proceed_one_lwp: lwp 624
360.431658   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.432236   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.432454   [threads] resume_one_lwp_throw: Resuming lwp 624 (continue, signal 0, stop not expected)
360.433157   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.624
360.433779   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
360.434022   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.434633   [threads] resume_one_thread: resuming LWP 655
360.434856   [threads] proceed_one_lwp: lwp 655
360.435425   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.435651   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.436196   [threads] resume_one_lwp_throw: Resuming lwp 655 (continue, signal 0, stop not expected)
360.437891   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.655
360.441461   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
360.444482   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.449415   [threads] resume_one_thread: resuming LWP 660
360.449702   [threads] proceed_one_lwp: lwp 660
360.449945   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216sigchld_handler

360.451837   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.452221   [threads] resume_one_lwp_throw: Resuming lwp 660 (continue, signal 0, stop not expected)
360.453033   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.660
360.453744   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
360.453999   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.454586   [threads] resume_one_thread: resuming LWP 661
360.454869   [threads] proceed_one_lwp: lwp 661
360.455131   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.455758   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.455983   [threads] resume_one_lwp_throw: Resuming lwp 661 (continue, signal 0, stop not expected)
360.456688   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.661
360.457317   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
360.457562   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0sigchld_handler

360.458326   [threads] resume_one_thread: resuming LWP 1074
360.458892   [threads] proceed_one_lwp: lwp 1074
360.459624   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.459877   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.460555   [threads] resume_one_lwp_throw: Resuming lwp 1074 (continue, signal 0, stop not expected)
360.460928   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1074
360.461592   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
360.461836   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.462437   [threads] resume_one_thread: resuming LWP 1118
360.462657   [threads] proceed_one_lwp: lwp 1118
360.463226   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.463450   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.463989   [threads] resume_one_lwp_throw: Resuming lwp 1118 (continue, signal 0, stop not expected)
360.464605   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1118
360.465547   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
360.465812   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.466502   [threads] resume_one_thread: resuming LWP 1293
360.466728   [threads] proceed_one_lwp: lwp 1293
360.466963   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.467525   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.467748   [threads] resume_one_lwp_throw: Resuming lwp 1293 (continue, signal 0, stop not expected)
360.468493   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1293
360.469602   [threads] operator(): [zyan1]  thread LWP 316.2999 is going to call resume_one_thread, leave_all_stopped 0
360.469875   [threads] resume_one_thread: [zyan1]  thread LWP 316.2999: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
360.470592   [threads] resume_one_thread: resuming LWP 2999
360.471305   [threads] proceed_one_lwp: lwp 2999
360.471562   [threads] linux_get_pc_32bit: stop pc is 0x4e98a7da
360.472166   [threads] resume_one_lwp_throw:   continue from pc 0x4e98a7da
360.472392   [threads] resume_one_lwp_throw: Resuming lwp 2999 (continue, signal 0, stop not expected)
360.473237   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.2999
360.473842 [threads] resume: exit
360.474076 [threads] wait_1: enter
360.474615   [threads] wait_1: [<all threads>]
360.475058   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3026, ERRNO-OK
360.475945   [threads] wait_for_event_filtered: waitpid 3026 received SIGSTOP - Stopped (signal) (stopped)
360.476280   [threads] filter_event: Saving LWP 3026 status SIGSTOP - Stopped (signal) (stopped) in stopped_pids list
360.476879   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3025, ERRNO-OK
360.477433   [threads] wait_for_event_filtered: waitpid 3025 received SIGSTOP - Stopped (signal) (stopped)
360.477766   [threads] filter_event: Saving LWP 3025 status SIGSTOP - Stopped (signal) (stopped) in stopped_pids list
360.478355   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 410, ERRNO-OK
360.479155   [threads] wait_for_event_filtered: waitpid 410 received SIGTRAP - Trace/breakpoint trap (stopped)
360.479583   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.480715   [threads] get_pc: pc is 0x4e9fb3e8
360.481087   [threads] handle_extended_wait: Got fork event from LWP 410, new child is 3025
360.482058   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.482996   [threads] get_pc: pc is 0x4e9fb3e8
360.483664   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 2999, ERRNO-OK
360.484305   [threads] wait_for_event_filtered: waitpid 2999 received 0 (exited)
360.485060   [threads] filter_event: 2999 exited
360.485296   [threads] delete_lwp: deleting 2999
360.485911   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 396, ERRNO-OK
360.486644   [threads] wait_for_event_filtered: waitpid 396 received SIGTRAP - Trace/breakpoint trap (stopped)
360.487029   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.487622   [threads] get_pc: pc is 0x4e9fb3e8
360.488551   [threads] handle_extended_wait: Got clone event from LWP 396, new child is LWP 3027
360.488866   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 379, ERRNO-OK
360.489130   [threads] wait_for_event_filtered: waitpid 379 received SIGTRAP - Trace/breakpoint trap (stopped)
360.489846   [threads] linux_get_pc_32bit: stop pc is 0x45b460
360.490610   [threads] get_pc: pc is 0x45b460
360.490871   [threads] save_stop_reason: LWP 316.379 stopped by software breakpoint
360.491161   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 361, ERRNO-OK
360.491816   [threads] wait_for_event_filtered: waitpid 361 received SIGTRAP - Trace/breakpoint trap (stopped)
360.492167   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.492765   [threads] get_pc: pc is 0x4e9fb3e8
360.493321   [threads] handle_extended_wait: Got clone event from LWP 361, new child is LWP 3026
360.493630   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 316, ERRNO-OK
360.494370   [threads] wait_for_event_filtered: waitpid 316 received SIGCHLD - Child exited (stopped)
360.494711   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.495400   [threads] get_pc: pc is 0x4e97c214
360.495760   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
360.496379   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.361 at 4e9fb3e8: step=0
360.496953   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.497606   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.497858   [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
360.498309   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
360.499359   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.396 at 4e9fb3e8: step=0
360.499622   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.500262   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.500935   [threads] resume_one_lwp_throw: Resuming lwp 396 (continue, signal 0, stop not expected)
360.501430   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.396
360.502531   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.3027 at 0: step=0
360.502884   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.503543   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.504142   [threads] resume_one_lwp_throw: Resuming lwp 3027 (continue, signal 0, stop not expected)
360.504519   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3027
360.505625   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.3026 at 0: step=0
360.506359   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.506599   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.507298   [threads] resume_one_lwp_throw: Resuming lwp 3026 (continue, signal 0, stop not expected)
360.507664   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3026
360.510482   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
360.510928   [threads] linux_get_pc_32bit: stop pc is 0x45b460
360.511831   [threads] get_pc: pc is 0x45b460
360.512077   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.379, last_resume_kind 1, lp->stop_reason 1
360.512375   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
360.513068   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
360.513723   [threads] linux_get_pc_32bit: stop pc is 0x45b460
360.513957   [threads] get_pc: pc is 0x45b460
360.514520   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.379, last_resume_kind 1, lp->stop_reason 1
360.514801   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
sigchld_handler
360.515559   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3025.3025.0
360.516265   [threads] wait_1: Hit a non-gdbserver trap event.
360.516550   [threads] stop_all_lwps: enter
360.517141     [threads] stop_all_lwps: sigchld_handler
stop, except=LWP 316.410
360.517972     [threads] send_sigstop: Sending sigstop to lwp 349
sigchld_handler
360.518766     [threads] send_sigstop: Sending sigstop to lwp 350
sigchld_handler
360.519608     [threads] send_sigstop: Sending sigstop to lwp 351
sigchld_handler
360.520482     [threads] send_sigstop: Sending sigstop to lwp 352
sigchld_handler
360.521263     [threads] send_sigstop: Sending sigstop to lwp 357
360.521670     [threads] send_sigstop: sigchld_handler
Sending sigstop to lwp 358
sigchld_handler
360.522615     [threads] send_sigstop: Sending sigstop to lwp 359
360.523232     [threads] send_sigstop: Sending sigstop to lwp 360
360.523495 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 361
360.524235 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 364
sigchld_handler
360.525679     [threads] send_sigstop: Sending sigstop to lwp 365
sigchld_handler
360.526519     [threads] send_sigstop: Sending sigstop to lwp 366
360.526864 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 367
sigchld_handler
360.527774     [threads] send_sigstop: Sending sigstop to lwp 368
360.528376 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 369
360.528964 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 370
sigchld_handler
360.530195     [threads] send_sigstop: Sending sigstop to lwp 371
sigchld_handler
360.531209     [threads] send_sigstop: Sending sigstop to lwp 372
360.531615 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 373
sigchld_handler
360.532558     [threads] send_sigstop: Sending sigstop to lwp 374
360.533264 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 375
sigchld_handler
360.534142     [threads] send_sigstop: Sending sigstop to lwp 376
sigchld_handler
360.534902     [threads] send_sigstop: Sending sigstop to lwp 377
360.535172 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 378
360.535879 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 380
360.536608 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 381
sigchld_handler
360.537525     [threads] send_sigstop: Sending sigstop to lwp 382
360.538301 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 383
360.539011 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 384
360.539703 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 385
360.541386 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 386
360.541786 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 387
sigchld_handler
360.542808     [threads] send_sigstop: Sending sigstop to lwp 388
sigchld_handler
360.543691     [threads] send_sigstop: Sending sigstop to lwp 389
sigchld_handler
360.544593     [threads] send_sigstop: Sending sigstop to lwp 390
360.545196 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 391
sigchld_handler
360.546183     [threads] send_sigstop: Sending sigstop to lwp 392
sigchld_handler
360.546934     [threads] send_sigstop: Sending sigstop to lwp 393
360.547615     [threads] send_sigstop: Sending sigstop to lwp 394
360.548204 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 395
360.549099 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 396
360.549468     [threads] send_sigstop: Sending sigstop to lwp 397
360.550297     [threads] send_sigstop: Sending sigstop to lwp 398
sigchld_handler
360.551053 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 399
360.551812 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 400
360.552529 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 401
360.553199 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 403
sigchld_handler
360.554051     [threads] send_sigstop: Sending sigstop to lwp 404
sigchld_handler
360.554927     [threads] send_sigstop: Sending sigstop to lwp 405
360.555208 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 406
360.555938 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 407
360.556747 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 408
sigchld_handler
360.557732     [threads] send_sigstop: Sending sigstop to lwp 409
360.558018     [threads] send_sigstop: Sending sigstop to lwp 411
360.558672 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 412
360.559409 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 414
360.560358 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 433
360.560751 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 436
sigchld_handler
360.561841     [threads] send_sigstop: Sending sigstop to lwp 437
sigchld_handler
360.562734     [threads] send_sigstop: sigchld_handler
Sending sigstop to lwp 483
360.563615 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 484
360.564354 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 493
360.565042 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 508
360.565708 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 613
sigchld_handler
360.566570     [threads] send_sigstop: Sending sigstop to lwp 624
360.567247 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 655
sigchld_handler
360.568113     [threads] send_sigstop: Sending sigstop to lwp 660
360.568750 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 661
sigchld_handler
360.569122     [threads] send_sigstop: Sending sigstop to lwp 1074
360.569613 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1118
360.570161 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1293
360.570524     [threads] send_sigstop: Sending sigstop to lwp 3027
360.570781 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 3026
360.571568     [threads] wait_for_sigstop: pulling events
360.571864     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3028, ERRNO-OK
360.572181     [threads] wait_for_event_filtered: waitpid 3028 received SIGSTOP - Stopped (signal) (stopped)
360.572565     [threads] filter_event: Saving LWP 3028 status SIGSTOP - Stopped (signal) (stopped) in stopped_pids list
360.572877     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3027, ERRNO-OK
360.573285     [threads] wait_for_event_filtered: waitpid 3027 received SIGSTOP - Stopped (signal) (stopped)
360.573851     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.574150     [threads] get_pc: pc is 0x4e97c216
360.574414     [threads] filter_event: Expected stop.
360.574682     [threads] filter_event: SIGSTOP caught for LWP 316.3027 while stopping threads.
360.574990     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3026, ERRNO-OK
360.575282     [threads] wait_for_event_filtered: waitpid 3026 received 0 (exited)
360.575740     [threads] filter_event: 3026 exited
360.576102     [threads] delete_lwp: deleting 3026
360.576413     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1293, ERRNO-OK
360.576706     [threads] wait_for_event_filtered: waitpid 1293 received SIGSTOP - Stopped (signal) (stopped)
360.577357     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.577629     [threads] get_pc: pc is 0x4e97c214
360.577887     [threads] filter_event: Expected stop.
360.578235     [threads] filter_event: SIGSTOP caught for LWP 316.1293 while stopping threads.
360.578734     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1118, ERRNO-OK
360.579025     [threads] wait_for_event_filtered: waitpid 1118 received SIGSTOP - Stopped (signal) (stopped)
360.579445     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.579724     [threads] get_pc: pc is 0x4e97c214
360.579976     [threads] filter_event: Expected stop.
360.580305     [threads] filter_event: SIGSTOP caught for LWP 316.1118 while stopping threads.
360.580586     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1074, ERRNO-OK
360.580857     [threads] wait_for_event_filtered: waitpid 1074 received SIGSTOP - Stopped (signal) (stopped)
360.581290     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.581566     [threads] get_pc: pc is 0x4e97c214
360.581810     [threads] filter_event: Expected stop.
360.582072     [threads] filter_event: SIGSTOP caught for LWP 316.1074 while stopping threads.
360.582340     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 661, ERRNO-OK
360.582623     [threads] wait_for_event_filtered: waitpid 661 received SIGSTOP - Stopped (signal) (stopped)
360.583229     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.583496     [threads] get_pc: pc is 0x4e97c216
360.583969     [threads] filter_event: Expected stop.
360.584234     [threads] filter_event: SIGSTOP caught for LWP 316.661 while stopping threads.
360.584511     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 660, ERRNO-OK
360.584787     [threads] wait_for_event_filtered: waitpid 660 received SIGSTOP - Stopped (signal) (stopped)
360.585219     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.585494     [threads] get_pc: pc is 0x4e97c216
360.585739     [threads] filter_event: Expected stop.
360.586004     [threads] filter_event: SIGSTOP caught for LWP 316.660 while stopping threads.
360.586273     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 655, ERRNO-OK
360.586546     [threads] wait_for_event_filtered: waitpid 655 received SIGSTOP - Stopped (signal) (stopped)
360.586962     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.587268     [threads] get_pc: pc is 0x4e97c214
360.587512     [threads] filter_event: Expected stop.
360.587930     [threads] filter_event: SIGSTOP caught for LWP 316.655 while stopping threads.
360.588206     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 624, ERRNO-OK
360.588473     [threads] wait_for_event_filtered: waitpid 624 received SIGSTOP - Stopped (signal) (stopped)
360.588999     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.589278     [threads] get_pc: pc is 0x4e97c214
360.589524     [threads] filter_event: Expected stop.
360.590209     [threads] filter_event: SIGSTOP caught for LWP 316.624 while stopping threads.
360.590466     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 613, ERRNO-OK
360.590714     [threads] wait_for_event_filtered: waitpid 613 received SIGSTOP - Stopped (signal) (stopped)
360.591136     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.591336     [threads] get_pc: pc is 0x4e97c216
360.591587     [threads] filter_event: Expected stop.
360.591859     [threads] filter_event: SIGSTOP caught for LWP 316.613 while stopping threads.
360.592141     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 508, ERRNO-OK
360.592424     [threads] wait_for_event_filtered: waitpid 508 received SIGSTOP - Stopped (signal) (stopped)
360.592858     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.593250     [threads] get_pc: pc is 0x4e97c216
360.593511     [threads] filter_event: Expected stop.
360.593778     [threads] filter_event: SIGSTOP caught for LWP 316.508 while stopping threads.
360.594058     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 493, ERRNO-OK
360.594332     [threads] wait_for_event_filtered: waitpid 493 received SIGSTOP - Stopped (signal) (stopped)
360.594849     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.595204     [threads] get_pc: pc is 0x4eb53d34
360.595459     [threads] filter_event: Expected stop.
360.595708     [threads] filter_event: SIGSTOP caught for LWP 316.493 while stopping threads.
360.595987     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 484, ERRNO-OK
360.596273     [threads] wait_for_event_filtered: waitpid 484 received SIGSTOP - Stopped (signal) (stopped)
360.596791     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.597058     [threads] get_pc: pc is 0x4e97c216
360.597321     [threads] filter_event: Expected stop.
360.597571     [threads] filter_event: SIGSTOP caught for LWP 316.484 while stopping threads.
360.597846     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 483, ERRNO-OK
360.598202     [threads] wait_for_event_filtered: waitpid 483 received SIGSTOP - Stopped (signal) (stopped)
360.598762     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.599024     [threads] get_pc: pc is 0x4e97c216
360.599268     [threads] filter_event: Expected stop.
360.599537     [threads] filter_event: SIGSTOP caught for LWP 316.483 while stopping threads.
360.599920     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 437, ERRNO-OK
360.600397     [threads] wait_for_event_filtered: waitpid 437 received SIGSTOP - Stopped (signal) (stopped)
360.600840     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.601185     [threads] get_pc: pc is 0x4e97c216
360.601448     [threads] filter_event: Expected stop.
360.601695     [threads] filter_event: SIGSTOP caught for LWP 316.437 while stopping threads.
360.601972     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 436, ERRNO-OK
360.602254     [threads] wait_for_event_filtered: waitpid 436 received SIGSTOP - Stopped (signal) (stopped)
360.602683     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.602973     [threads] get_pc: pc is 0x4e97c214
360.603214     [threads] filter_event: Expected stop.
360.603489     [threads] filter_event: SIGSTOP caught for LWP 316.436 while stopping threads.
360.603771     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 433, ERRNO-OK
360.604036     [threads] wait_for_event_filtered: waitpid 433 received SIGSTOP - Stopped (signal) (stopped)
360.604465     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.605023     [threads] get_pc: pc is 0x4e97c216
360.605288     [threads] filter_event: Expected stop.
360.605553     [threads] filter_event: SIGSTOP caught for LWP 316.433 while stopping threads.
360.605823     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 414, ERRNO-OK
360.606287     [threads] wait_for_event_filtered: waitpid 414 received SIGSTOP - Stopped (signal) (stopped)
360.606728     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.606987     [threads] get_pc: pc is 0x4e97c216
360.607313     [threads] filter_event: Expected stop.
360.607690     [threads] filter_event: SIGSTOP caught for LWP 316.414 while stopping threads.
360.607979     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 412, ERRNO-OK
360.608243     [threads] wait_for_event_filtered: waitpid 412 received SIGSTOP - Stopped (signal) (stopped)
360.608667     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.608925     [threads] get_pc: pc is 0x4e97c216
360.609181     [threads] filter_event: Expected stop.
360.609448     [threads] filter_event: SIGSTOP caught for LWP 316.412 while stopping threads.
360.609709     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 411, ERRNO-OK
360.610161     [threads] wait_for_event_filtered: waitpid 411 received SIGSTOP - Stopped (signal) (stopped)
360.610600     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.610860     [threads] get_pc: pc is 0x4e97c214
360.611118     [threads] filter_event: Expected stop.
360.611378     [threads] filter_event: SIGSTOP caught for LWP 316.411 while stopping threads.
360.611662     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 409, ERRNO-OK
360.611950     [threads] wait_for_event_filtered: waitpid 409 received SIGSTOP - Stopped (signal) (stopped)
360.612352     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.612623     [threads] get_pc: pc is 0x4e97c216
360.613058     [threads] filter_event: Expected stop.
360.613288     [threads] filter_event: SIGSTOP caught for LWP 316.409 while stopping threads.
360.613534     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 408, ERRNO-OK
360.613787     [threads] wait_for_event_filtered: waitpid 408 received SIGSTOP - Stopped (signal) (stopped)
360.614159     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.614388     [threads] get_pc: pc is 0x4e97c216
360.614603     [threads] filter_event: Expected stop.
360.614820     [threads] filter_event: SIGSTOP caught for LWP 316.408 while stopping threads.
360.615060     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 407, ERRNO-OK
360.615512     [threads] wait_for_event_filtered: waitpid 407 received SIGSTOP - Stopped (signal) (stopped)
360.615888     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.616125     [threads] get_pc: pc is 0x4e97c214
360.616342     [threads] filter_event: Expected stop.
360.616732     [threads] filter_event: SIGSTOP caught for LWP 316.407 while stopping threads.
360.616986     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 406, ERRNO-OK
360.617234     [threads] wait_for_event_filtered: waitpid 406 received SIGSTOP - Stopped (signal) (stopped)
360.617639     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.617887     [threads] get_pc: pc is 0x4e97c216
360.618278     [threads] filter_event: Expected stop.
360.618538     [threads] filter_event: SIGSTOP caught for LWP 316.406 while stopping threads.
360.618831     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 405, ERRNO-OK
360.619116     [threads] wait_for_event_filtered: waitpid 405 received SIGSTOP - Stopped (signal) (stopped)
360.619547     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.619902     [threads] get_pc: pc is 0x4e97c216
360.620316     [threads] filter_event: Expected stop.
360.620579     [threads] filter_event: SIGSTOP caught for LWP 316.405 while stopping threads.
360.620873     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 404, ERRNO-OK
360.621260     [threads] wait_for_event_filtered: waitpid 404 received SIGSTOP - Stopped (signal) (stopped)
360.621771     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.622062     [threads] get_pc: pc is 0x4e97c216
360.622308     [threads] filter_event: Expected stop.
360.622650     [threads] filter_event: SIGSTOP caught for LWP 316.404 while stopping threads.
360.622944     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 403, ERRNO-OK
360.623229     [threads] wait_for_event_filtered: waitpid 403 received SIGSTOP - Stopped (signal) (stopped)
360.623742     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.624015     [threads] get_pc: pc is 0x4e97c216
360.624273     [threads] filter_event: Expected stop.
360.624538     [threads] filter_event: SIGSTOP caught for LWP 316.403 while stopping threads.
360.624813     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 401, ERRNO-OK
360.625095     [threads] wait_for_event_filtered: waitpid 401 received SIGSTOP - Stopped (signal) (stopped)
360.625517     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.625769     [threads] get_pc: pc is 0x4e97c216
360.626019     [threads] filter_event: Expected stop.
360.626261     [threads] filter_event: SIGSTOP caught for LWP 316.401 while stopping threads.
360.626549     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 400, ERRNO-OK
360.626831     [threads] wait_for_event_filtered: waitpid 400 received SIGSTOP - Stopped (signal) (stopped)
360.627240     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.627491     [threads] get_pc: pc is 0x4e97c214
360.627771     [threads] filter_event: Expected stop.
360.628021     [threads] filter_event: SIGSTOP caught for LWP 316.400 while stopping threads.
360.628313     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 399, ERRNO-OK
360.628849     [threads] wait_for_event_filtered: waitpid 399 received SIGSTOP - Stopped (signal) (stopped)
360.629261     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.629538     [threads] get_pc: pc is 0x4eb53d34
360.629797     [threads] filter_event: Expected stop.
360.630121     [threads] filter_event: SIGSTOP caught for LWP 316.399 while stopping threads.
360.630409     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 398, ERRNO-OK
360.630773     [threads] wait_for_event_filtered: waitpid 398 received SIGSTOP - Stopped (signal) (stopped)
360.631196     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.631458     [threads] get_pc: pc is 0x4e97c216
360.631870     [threads] filter_event: Expected stop.
360.632146     [threads] filter_event: SIGSTOP caught for LWP 316.398 while stopping threads.
360.632444     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 397, ERRNO-OK
360.632729     [threads] wait_for_event_filtered: waitpid 397 received SIGSTOP - Stopped (signal) (stopped)
360.633145     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.633396     [threads] get_pc: pc is 0x4e97c216
360.633668     [threads] filter_event: Expected stop.
360.633930     [threads] filter_event: SIGSTOP caught for LWP 316.397 while stopping threads.
360.634225     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 396, ERRNO-OK
360.634614     [threads] wait_for_event_filtered: waitpid 396 received SIGTRAP - Trace/breakpoint trap (stopped)
360.635033     [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.635293     [threads] get_pc: pc is 0x4e9fb3e8
360.635718     [threads] handle_extended_wait: Got clone event from LWP 396, new child is LWP 3028
360.636069     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 395, ERRNO-OK
360.636366     [threads] wait_for_event_filtered: waitpid 395 received SIGSTOP - Stopped (signal) (stopped)
360.636764     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.637135     [threads] get_pc: pc is 0x4e97c216
360.637405     [threads] filter_event: Expected stop.
360.637685     [threads] filter_event: SIGSTOP caught for LWP 316.395 while stopping threads.
360.637966     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 394, ERRNO-OK
360.638256     [threads] wait_for_event_filtered: waitpid 394 received SIGSTOP - Stopped (signal) (stopped)
360.638662     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.638932     [threads] get_pc: pc is 0x4e97c216
360.639375     [threads] filter_event: Expected stop.
360.639644     [threads] filter_event: SIGSTOP caught for LWP 316.394 while stopping threads.
360.639943     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 393, ERRNO-OK
360.640574     [threads] wait_for_event_filtered: waitpid 393 received SIGSTOP - Stopped (signal) (stopped)
360.641004     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.641278     [threads] get_pc: pc is 0x4eb53d34
360.641517     [threads] filter_event: Expected stop.
360.641952     [threads] filter_event: SIGSTOP caught for LWP 316.393 while stopping threads.
360.642262     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 392, ERRNO-OK
360.642559     [threads] wait_for_event_filtered: waitpid 392 received SIGSTOP - Stopped (signal) (stopped)
360.642955     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.643232     [threads] get_pc: pc is 0x4e97c216
360.643577     [threads] filter_event: Expected stop.
360.643863     [threads] filter_event: SIGSTOP caught for LWP 316.392 while stopping threads.
360.644161     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 391, ERRNO-OK
360.644454     [threads] wait_for_event_filtered: waitpid 391 received SIGSTOP - Stopped (signal) (stopped)
360.645112     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.645386     [threads] get_pc: pc is 0x4e97c216
360.645634     [threads] filter_event: Expected stop.
360.645901     [threads] filter_event: SIGSTOP caught for LWP 316.391 while stopping threads.
360.646201     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 390, ERRNO-OK
360.646655     [threads] wait_for_event_filtered: waitpid 390 received SIGSTOP - Stopped (signal) (stopped)
360.647203     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.647469     [threads] get_pc: pc is 0x4e97c216
360.647818     [threads] filter_event: Expected stop.
360.648101     [threads] filter_event: SIGSTOP caught for LWP 316.390 while stopping threads.
360.648410     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 389, ERRNO-OK
360.648685     [threads] wait_for_event_filtered: waitpid 389 received SIGSTOP - Stopped (signal) (stopped)
360.649097     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.649481     [threads] get_pc: pc is 0x4e97c216
360.649867     [threads] filter_event: Expected stop.
360.650164     [threads] filter_event: SIGSTOP caught for LWP 316.389 while stopping threads.
360.650470     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 388, ERRNO-OK
360.650760     [threads] wait_for_event_filtered: waitpid 388 received SIGSTOP - Stopped (signal) (stopped)
360.651372     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.651641     [threads] get_pc: pc is 0x4e97c216
360.651908     [threads] filter_event: Expected stop.
360.652173     [threads] filter_event: SIGSTOP caught for LWP 316.388 while stopping threads.
360.652539     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 387, ERRNO-OK
360.652941     [threads] wait_for_event_filtered: waitpid 387 received SIGSTOP - Stopped (signal) (stopped)
360.653357     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.653610     [threads] get_pc: pc is 0x4e97c216
360.653867     [threads] filter_event: Expected stop.
360.654126     [threads] filter_event: SIGSTOP caught for LWP 316.387 while stopping threads.
360.654598     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 386, ERRNO-OK
360.654875     [threads] wait_for_event_filtered: waitpid 386 received SIGSTOP - Stopped (signal) (stopped)
360.655348     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.655607     [threads] get_pc: pc is 0x4e97c216
360.655861     [threads] filter_event: Expected stop.
360.656127     [threads] filter_event: SIGSTOP caught for LWP 316.386 while stopping threads.
360.656568     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 385, ERRNO-OK
360.656871     [threads] wait_for_event_filtered: waitpid 385 received SIGSTOP - Stopped (signal) (stopped)
360.657299     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.657563     [threads] get_pc: pc is 0x4e97c216
360.657912     [threads] filter_event: Expected stop.
360.658172     [threads] filter_event: SIGSTOP caught for LWP 316.385 while stopping threads.
360.658477     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 384, ERRNO-OK
360.658761     [threads] wait_for_event_filtered: waitpid 384 received SIGSTOP - Stopped (signal) (stopped)
360.659336     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.659522     [threads] get_pc: pc is 0x4e97c216
360.659771     [threads] filter_event: Expected stop.
360.660083     [threads] filter_event: SIGSTOP caught for LWP 316.384 while stopping threads.
360.660399     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 383, ERRNO-OK
360.660691     [threads] wait_for_event_filtered: waitpid 383 received SIGSTOP - Stopped (signal) (stopped)
360.661097     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.661366     [threads] get_pc: pc is 0x4e97c214
360.661605     [threads] filter_event: Expected stop.
360.661995     [threads] filter_event: SIGSTOP caught for LWP 316.383 while stopping threads.
360.662450     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 382, ERRNO-OK
360.662743     [threads] wait_for_event_filtered: waitpid 382 received SIGSTOP - Stopped (signal) (stopped)
360.663192     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.663477     [threads] get_pc: pc is 0x4e97c216
360.663840     [threads] filter_event: Expected stop.
360.664104     [threads] filter_event: SIGSTOP caught for LWP 316.382 while stopping threads.
360.664412     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 381, ERRNO-OK
360.664698     [threads] wait_for_event_filtered: waitpid 381 received SIGSTOP - Stopped (signal) (stopped)
360.665088     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
360.665357     [threads] get_pc: pc is 0x4e9f6646
360.665789     [threads] filter_event: Expected stop.
360.666069     [threads] filter_event: SIGSTOP caught for LWP 316.381 while stopping threads.
360.666371     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 380, ERRNO-OK
360.666776     [threads] wait_for_event_filtered: waitpid 380 received SIGSTOP - Stopped (signal) (stopped)
360.667204     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.667461     [threads] get_pc: pc is 0x4e97c214
360.667694     [threads] filter_event: Expected stop.
360.668075     [threads] filter_event: SIGSTOP caught for LWP 316.380 while stopping threads.
360.668453     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 378, ERRNO-OK
360.668828     [threads] wait_for_event_filtered: waitpid 378 received SIGSTOP - Stopped (signal) (stopped)
360.669177     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.669400     [threads] get_pc: pc is 0x4e97c216
360.669613     [threads] filter_event: Expected stop.
360.669829     [threads] filter_event: SIGSTOP caught for LWP 316.378 while stopping threads.
360.670150     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 377, ERRNO-OK
360.670390     [threads] wait_for_event_filtered: waitpid 377 received SIGSTOP - Stopped (signal) (stopped)
360.670729     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.670959     [threads] get_pc: pc is 0x4e97c216
360.671168     [threads] filter_event: Expected stop.
360.671384     [threads] filter_event: SIGSTOP caught for LWP 316.377 while stopping threads.
360.671647     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 376, ERRNO-OK
360.671887     [threads] wait_for_event_filtered: waitpid 376 received SIGSTOP - Stopped (signal) (stopped)
360.672282     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.672550     [threads] get_pc: pc is 0x4e97c216
360.672816     [threads] filter_event: Expected stop.
360.673082     [threads] filter_event: SIGSTOP caught for LWP 316.376 while stopping threads.
360.673394     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 375, ERRNO-OK
360.673665     [threads] wait_for_event_filtered: waitpid 375 received SIGSTOP - Stopped (signal) (stopped)
360.674070     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.674344     [threads] get_pc: pc is 0x4e97c216
360.674583     [threads] filter_event: Expected stop.
360.674843     [threads] filter_event: SIGSTOP caught for LWP 316.375 while stopping threads.
360.675282     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 374, ERRNO-OK
360.675511     [threads] wait_for_event_filtered: waitpid 374 received SIGSTOP - Stopped (signal) (stopped)
360.675988     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.676355     [threads] get_pc: pc is 0x4e97c214
360.676600     [threads] filter_event: Expected stop.
360.676863     [threads] filter_event: SIGSTOP caught for LWP 316.374 while stopping threads.
360.677310     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 373, ERRNO-OK
360.677605     [threads] wait_for_event_filtered: waitpid 373 received SIGSTOP - Stopped (signal) (stopped)
360.678119     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.678581     [threads] get_pc: pc is 0x4e97c216
360.678943     [threads] filter_event: Expected stop.
360.679210     [threads] filter_event: SIGSTOP caught for LWP 316.373 while stopping threads.
360.679618     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 372, ERRNO-OK
360.679913     [threads] wait_for_event_filtered: waitpid 372 received SIGSTOP - Stopped (signal) (stopped)
360.680742     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.681012     [threads] get_pc: pc is 0x4e97c216
360.681275     [threads] filter_event: Expected stop.
360.681538     [threads] filter_event: SIGSTOP caught for LWP 316.372 while stopping threads.
360.681998     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 371, ERRNO-OK
360.682303     [threads] wait_for_event_filtered: waitpid 371 received SIGSTOP - Stopped (signal) (stopped)
360.682709     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.683046     [threads] get_pc: pc is 0x4e97c214
360.683306     [threads] filter_event: Expected stop.
360.683553     [threads] filter_event: SIGSTOP caught for LWP 316.371 while stopping threads.
360.684060     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 370, ERRNO-OK
360.684364     [threads] wait_for_event_filtered: waitpid 370 received SIGSTOP - Stopped (signal) (stopped)
360.684914     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.685182     [threads] get_pc: pc is 0x4e97c216
360.685441     [threads] filter_event: Expected stop.
360.685689     [threads] filter_event: SIGSTOP caught for LWP 316.370 while stopping threads.
360.686021     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 369, ERRNO-OK
360.686423     [threads] wait_for_event_filtered: waitpid 369 received SIGSTOP - Stopped (signal) (stopped)
360.686924     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.687180     [threads] get_pc: pc is 0x4e97c214
360.687443     [threads] filter_event: Expected stop.
360.687705     [threads] filter_event: SIGSTOP caught for LWP 316.369 while stopping threads.
360.688086     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 368, ERRNO-OK
360.688379     [threads] wait_for_event_filtered: waitpid 368 received SIGSTOP - Stopped (signal) (stopped)
360.688765     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.689109     [threads] get_pc: pc is 0x4eb53d34
360.689353     [threads] filter_event: Expected stop.
360.689622     [threads] filter_event: SIGSTOP caught for LWP 316.368 while stopping threads.
360.689958     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 367, ERRNO-OK
360.690307     [threads] wait_for_event_filtered: waitpid 367 received SIGSTOP - Stopped (signal) (stopped)
360.690695     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.690967     [threads] get_pc: pc is 0x4e97c214
360.691208     [threads] filter_event: Expected stop.
360.691470     [threads] filter_event: SIGSTOP caught for LWP 316.367 while stopping threads.
360.691978     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 366, ERRNO-OK
360.692272     [threads] wait_for_event_filtered: waitpid 366 received SIGSTOP - Stopped (signal) (stopped)
360.692651     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.692925     [threads] get_pc: pc is 0x4e97c216
360.693177     [threads] filter_event: Expected stop.
360.693424     [threads] filter_event: SIGSTOP caught for LWP 316.366 while stopping threads.
360.693754     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 365, ERRNO-OK
360.694051     [threads] wait_for_event_filtered: waitpid 365 received SIGSTOP - Stopped (signal) (stopped)
360.694426     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.694616     [threads] get_pc: pc is 0x4e97c216
360.694861     [threads] filter_event: Expected stop.
360.695454     [threads] filter_event: SIGSTOP caught for LWP 316.365 while stopping threads.
360.695786     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 364, ERRNO-OK
360.696077     [threads] wait_for_event_filtered: waitpid 364 received SIGSTOP - Stopped (signal) (stopped)
360.696460     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.696730     [threads] get_pc: pc is 0x4e97c216
360.697084     [threads] filter_event: Expected stop.
360.697510     [threads] filter_event: SIGSTOP caught for LWP 316.364 while stopping threads.
360.697834     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 361, ERRNO-OK
360.698207     [threads] wait_for_event_filtered: waitpid 361 received SIGSTOP - Stopped (signal) (stopped)
360.698604     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.698859     [threads] get_pc: pc is 0x4e97c214
360.699247     [threads] filter_event: Expected stop.
360.699519     [threads] filter_event: SIGSTOP caught for LWP 316.361 while stopping threads.
360.699860     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 360, ERRNO-OK
360.700423     [threads] wait_for_event_filtered: waitpid 360 received SIGSTOP - Stopped (signal) (stopped)
360.700823     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.701084     [threads] get_pc: pc is 0x4e97c216
360.701342     [threads] filter_event: Expected stop.
360.701691     [threads] filter_event: SIGSTOP caught for LWP 316.360 while stopping threads.
360.702119     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 359, ERRNO-OK
360.702429     [threads] wait_for_event_filtered: waitpid 359 received SIGSTOP - Stopped (signal) (stopped)
360.702822     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.703213     [threads] get_pc: pc is 0x4e97c216
360.703461     [threads] filter_event: Expected stop.
360.703720     [threads] filter_event: SIGSTOP caught for LWP 316.359 while stopping threads.
360.704185     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 358, ERRNO-OK
360.704484     [threads] wait_for_event_filtered: waitpid 358 received SIGSTOP - Stopped (signal) (stopped)
360.704881     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.705145     [threads] get_pc: pc is 0x4e97c216
360.705506     [threads] filter_event: Expected stop.
360.705772     [threads] filter_event: SIGSTOP caught for LWP 316.358 while stopping threads.
360.706097     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 357, ERRNO-OK
360.706393     [threads] wait_for_event_filtered: waitpid 357 received SIGSTOP - Stopped (signal) (stopped)
360.706939     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.707202     [threads] get_pc: pc is 0x4e97c216
360.707464     [threads] filter_event: Expected stop.
360.707725     [threads] filter_event: SIGSTOP caught for LWP 316.357 while stopping threads.
360.708143     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 352, ERRNO-OK
360.708446     [threads] wait_for_event_filtered: waitpid 352 received SIGSTOP - Stopped (signal) (stopped)
360.709085     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.709358     [threads] get_pc: pc is 0x4e97c216
360.709602     [threads] filter_event: Expected stop.
360.709864     [threads] filter_event: SIGSTOP caught for LWP 316.352 while stopping threads.
360.710462     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 351, ERRNO-OK
360.710768     [threads] wait_for_event_filtered: waitpid 351 received SIGSTOP - Stopped (signal) (stopped)
360.711146     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.711534     [threads] get_pc: pc is 0x4e97c216
360.711997     [threads] filter_event: Expected stop.
360.712262     [threads] filter_event: SIGSTOP caught for LWP 316.351 while stopping threads.
360.712590     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 350, ERRNO-OK
360.713080     [threads] wait_for_event_filtered: waitpid 350 received SIGSTOP - Stopped (signal) (stopped)
360.713485     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.713742     [threads] get_pc: pc is 0x4e97c214
360.714087     [threads] filter_event: Expected stop.
360.714458     [threads] filter_event: SIGSTOP caught for LWP 316.350 while stopping threads.
360.714796     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 349, ERRNO-OK
360.715082     [threads] wait_for_event_filtered: waitpid 349 received SIGSTOP - Stopped (signal) (stopped)
360.715556     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.715821     [threads] get_pc: pc is 0x4e97c214
360.716078     [threads] filter_event: Expected stop.
360.716340     [threads] filter_event: SIGSTOP caught for LWP 316.349 while stopping threads.
360.716758     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
360.717655     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
360.718358     [threads] operator(): leader_pid=3025, leader_lp!=NULL=1, num_lwps=1, zombie=0
360.718722     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
360.719057     [threads] stop_all_lwps: setting stopping_threads back to !stopping
360.719206   [threads] stop_all_lwps: exit
360.719353   [threads] operator(): [zyan1] operator() 3470, thread LWP 316.379, thread->last_resume_kind 1
360.719504   [threads] write_memory: Writing 1b78 to 0x0045b460 in process 316
360.719745   [threads] operator(): [zyan1] operator() 3470, thread LWP 3025.3025, thread->last_resume_kind 2
360.719888   [threads] write_memory: Writing 1b78 to 0x0045b460 in process 3025
360.720093   [threads] unstop_all_lwps: enter
360.720184     [threads] unstop_all_lwps: except=(LWP 410)
360.720255     [threads] proceed_one_lwp: lwp 316
360.720321     [threads] proceed_one_lwp:    LWP 316 has pending status, leaving stopped
360.720390     [threads] proceed_one_lwp: lwp 349
360.720475     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.720550     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.720618     [threads] resume_one_lwp_throw: Resuming lwp 349 (continue, signal 0, stop not expected)
360.720903     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.349
360.721012     [threads] proceed_one_lwp: lwp 350
360.721099     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.721176     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.721243     [threads] resume_one_lwp_throw: Resuming lwp 350 (continue, signal 0, stop not expected)
360.721506     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.350
360.721608     [threads] proceed_one_lwp: lwp 351
360.721794     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.721911     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.721974     [threads] resume_one_lwp_throw: Resuming lwp 351 (continue, signal 0, stop not expected)
360.722219     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.351
360.722305     [threads] proceed_one_lwp: lwp 352
360.722373     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.722428     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.722480     [threads] resume_one_lwp_throw: Resuming lwp 352 (continue, signal 0, stop not expected)
360.722696     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.352
360.722779     [threads] proceed_one_lwp: lwp 357
360.722844     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.722897     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.722949     [threads] resume_one_lwp_throw: Resuming lwp 357 (continue, signal 0, stop not expected)
360.723111     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.357
360.723229     [threads] proceed_one_lwp: lwp 358
360.723459     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.723669     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.723876     [threads] resume_one_lwp_throw: Resuming lwp 358 (continue, signal 0, stop not expected)
360.724379     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.358
360.724620     [threads] proceed_one_lwp: lwp 359
360.724845     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.725055     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.725269     [threads] resume_one_lwp_throw: Resuming lwp 359 (continue, signal 0, stop not expected)
360.725595     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.359
360.725837     [threads] proceed_one_lwp: lwp 360
360.726059     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.726279     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.726487     [threads] resume_one_lwp_throw: Resuming lwp 360 (continue, signal 0, stop not expected)
360.726836     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.360
360.727176     [threads] proceed_one_lwp: lwp 361
360.727416     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.727843     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.728096     [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
360.728508     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
360.728777     [threads] proceed_one_lwp: lwp 364
360.729046     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.729302     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.729544     [threads] resume_one_lwp_throw: Resuming lwp 364 (continue, signal 0, stop not expected)
360.729993     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.364
360.730445     [threads] proceed_one_lwp: lwp 365
360.730794     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.731193     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.731437     [threads] resume_one_lwp_throw: Resuming lwp 365 (continue, signal 0, stop not expected)
360.731903     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.365
360.732182     [threads] proceed_one_lwp: lwp 366
360.732457     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.732718     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.732955     [threads] resume_one_lwp_throw: Resuming lwp 366 (continue, signal 0, stop not expected)
360.733333     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.366
360.733622     [threads] proceed_one_lwp: lwp 367
360.733878     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.734226     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.734495     [threads] resume_one_lwp_throw: Resuming lwp 367 (continue, signal 0, stop not expected)
360.734953     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.367
360.735240     [threads] proceed_one_lwp: lwp 368
360.735496     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.735763     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.736015     [threads] resume_one_lwp_throw: Resuming lwp 368 (continue, signal 0, stop not expected)
360.736587     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.368
360.736859     [threads] proceed_one_lwp: lwp 369
360.737119     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.737515     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.737758     [threads] resume_one_lwp_throw: Resuming lwp 369 (continue, signal 0, stop not expected)
360.738336     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.369
360.738599     [threads] proceed_one_lwp: lwp 370
360.738883     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.739287     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.739540     [threads] resume_one_lwp_throw: Resuming lwp 370 (continue, signal 0, stop not expected)
360.740062     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.370
360.740348     [threads] proceed_one_lwp: lwp 371
360.740733     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.740984     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.741239     [threads] resume_one_lwp_throw: Resuming lwp 371 (continue, signal 0, stop not expected)
360.741917     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.371
360.742189     [threads] proceed_one_lwp: lwp 372
360.742583     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.742826     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.743082     [threads] resume_one_lwp_throw: Resuming lwp 372 (continue, signal 0, stop not expected)
360.743467     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.372
360.743739     [threads] proceed_one_lwp: lwp 373
360.744068     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.744337     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.744577     [threads] resume_one_lwp_throw: Resuming lwp 373 (continue, signal 0, stop not expected)
360.745213     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.373
360.745498     [threads] proceed_one_lwp: lwp 374
360.745775     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.746036     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.746292     [threads] resume_one_lwp_throw: Resuming lwp 374 (continue, signal 0, stop not expected)
360.746670     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.374
360.746938     [threads] proceed_one_lwp: lwp 375
360.747213     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.747458     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.747715     [threads] resume_one_lwp_throw: Resuming lwp 375 (continue, signal 0, stop not expected)
360.748157     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.375
360.748768     [threads] proceed_one_lwp: lwp 376
360.749062     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.749311     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.749659     [threads] resume_one_lwp_throw: Resuming lwp 376 (continue, signal 0, stop not expected)
360.750184     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.376
360.750579     [threads] proceed_one_lwp: lwp 377
360.750946     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.751193     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.751451     [threads] resume_one_lwp_throw: Resuming lwp 377 (continue, signal 0, stop not expected)
360.751925     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.377
360.752310     [threads] proceed_one_lwp: lwp 378
360.752595     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.752852     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.753089     [threads] resume_one_lwp_throw: Resuming lwp 378 (continue, signal 0, stop not expected)
360.753493     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.378
360.753893     [threads] proceed_one_lwp: lwp 379
360.754138     [threads] proceed_one_lwp:    LWP 379 has pending status, leaving stopped
360.754395     [threads] proceed_one_lwp: lwp 380
360.754738     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.755128     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.755384     [threads] resume_one_lwp_throw: Resuming lwp 380 (continue, signal 0, stop not expected)
360.755804     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.380
360.756192     [threads] proceed_one_lwp: lwp 381
360.756547     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
360.756954     [threads] resume_one_lwp_throw:   continue from pc 0x4e9f6646
360.757198     [threads] resume_one_lwp_throw: Resuming lwp 381 (continue, signal 0, stop not expected)
360.757657     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.381
360.757937     [threads] proceed_one_lwp: lwp 382
360.758215     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.758470     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.758710     [threads] resume_one_lwp_throw: Resuming lwp 382 (continue, signal 0, stop not expected)
360.759210     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.382
360.759492     [threads] proceed_one_lwp: lwp 383
360.759766     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.760288     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.760549     [threads] resume_one_lwp_throw: Resuming lwp 383 (continue, signal 0, stop not expected)
360.760941     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.383
360.761195     [threads] proceed_one_lwp: lwp 384
360.761417     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.761628     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.761839     [threads] resume_one_lwp_throw: Resuming lwp 384 (continue, signal 0, stop not expected)
360.762241     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.384
360.762516     [threads] proceed_one_lwp: lwp 385
360.762791     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.763055     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.763294     [threads] resume_one_lwp_throw: Resuming lwp 385 (continue, signal 0, stop not expected)
360.763685     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.385
360.763945     [threads] proceed_one_lwp: lwp 386
360.764201     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.764456     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.764709     [threads] resume_one_lwp_throw: Resuming lwp 386 (continue, signal 0, stop not expected)
360.765081     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.386
360.765459     [threads] proceed_one_lwp: lwp 387
360.765722     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.765981     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.766222     [threads] resume_one_lwp_throw: Resuming lwp 387 (continue, signal 0, stop not expected)
360.766923     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.387
360.767154     [threads] proceed_one_lwp: lwp 388
360.767413     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.767671     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.768021     [threads] resume_one_lwp_throw: Resuming lwp 388 (continue, signal 0, stop not expected)
360.768648     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.388
360.769136     [threads] proceed_one_lwp: lwp 389
360.769414     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.769669     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.770063     [threads] resume_one_lwp_throw: Resuming lwp 389 (continue, signal 0, stop not expected)
360.770640     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.389
360.770925     [threads] proceed_one_lwp: lwp 390
360.771200     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.771535     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.771776     [threads] resume_one_lwp_throw: Resuming lwp 390 (continue, signal 0, stop not expected)
360.772175     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.390
360.772449     [threads] proceed_one_lwp: lwp 391
360.772813     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.773075     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.773324     [threads] resume_one_lwp_throw: Resuming lwp 391 (continue, signal 0, stop not expected)
360.773765     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.391
360.774174     [threads] proceed_one_lwp: lwp 392
360.774449     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.774780     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.775021     [threads] resume_one_lwp_throw: Resuming lwp 392 (continue, signal 0, stop not expected)
360.775472     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.392
360.775875     [threads] proceed_one_lwp: lwp 393
360.776290     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.776554     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.776785     [threads] resume_one_lwp_throw: Resuming lwp 393 (continue, signal 0, stop not expected)
360.777274     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.393
360.777526     [threads] proceed_one_lwp: lwp 394
360.778001     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.778220     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.778428     [threads] resume_one_lwp_throw: Resuming lwp 394 (continue, signal 0, stop not expected)
360.778879     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.394
360.779236     [threads] proceed_one_lwp: lwp 395
360.779469     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.779685     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.779895     [threads] resume_one_lwp_throw: Resuming lwp 395 (continue, signal 0, stop not expected)
360.780303     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.395
360.780578     [threads] proceed_one_lwp: lwp 396
360.780842     [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.781112     [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.781347     [threads] resume_one_lwp_throw: Resuming lwp 396 (continue, signal 0, stop expected)
360.781702 sigchld_handler
    [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.396
360.782129     [threads] proceed_one_lwp: lwp 397
360.782425     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.782657     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.782922     [threads] resume_one_lwp_throw: Resuming lwp 397 (continue, signal 0, stop not expected)
360.783418     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.397
360.783695     [threads] proceed_one_lwp: lwp 398
360.783971     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.784663     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.784947     [threads] resume_one_lwp_throw: Resuming lwp 398 (continue, signal 0, stop not expected)
360.785345     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.398
360.785734     [threads] proceed_one_lwp: lwp 399
360.786025     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.786378     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.786759     [threads] resume_one_lwp_throw: Resuming lwp 399 (continue, signal 0, stop not expected)
360.787150     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.399
360.787423     [threads] proceed_one_lwp: lwp 400
360.787793     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.788039     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.788404     [threads] resume_one_lwp_throw: Resuming lwp 400 (continue, signal 0, stop not expected)
360.788891     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.400
360.789331     [threads] proceed_one_lwp: lwp 401
360.789583     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.789853     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.790168     [threads] resume_one_lwp_throw: Resuming lwp 401 (continue, signal 0, stop not expected)
360.790571     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.401
360.790850     [threads] proceed_one_lwp: lwp 403
360.791119     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.791384     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.791762     [threads] resume_one_lwp_throw: Resuming lwp 403 (continue, signal 0, stop not expected)
360.792308     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.403
360.792599     [threads] proceed_one_lwp: lwp 404
360.792876     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.793135     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.793375     [threads] resume_one_lwp_throw: Resuming lwp 404 (continue, signal 0, stop not expected)
360.793829     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.404
360.794084     [threads] proceed_one_lwp: lwp 405
360.794343     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.794605     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.794847     [threads] resume_one_lwp_throw: Resuming lwp 405 (continue, signal 0, stop not expected)
360.795245     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.405
360.795521     [threads] proceed_one_lwp: lwp 406
360.795788     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.796030     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.796285     [threads] resume_one_lwp_throw: Resuming lwp 406 (continue, signal 0, stop not expected)
360.796659     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.406
360.796938     [threads] proceed_one_lwp: lwp 407
360.797190     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.797543     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.797787     [threads] resume_one_lwp_throw: Resuming lwp 407 (continue, signal 0, stop not expected)
360.798188     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.407
360.798533     [threads] proceed_one_lwp: lwp 408
360.798809     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.799203     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.799458     [threads] resume_one_lwp_throw: Resuming lwp 408 (continue, signal 0, stop not expected)
360.799923     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.408
360.800492     [threads] proceed_one_lwp: lwp 409
360.800761     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.801021     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.801273     [threads] resume_one_lwp_throw: Resuming lwp 409 (continue, signal 0, stop not expected)
360.801775     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.409
360.802035     [threads] proceed_one_lwp: lwp 411
360.802259     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.802578     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.802804     [threads] resume_one_lwp_throw: Resuming lwp 411 (continue, signal 0, stop not expected)
360.803247     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.411
360.803486     [threads] proceed_one_lwp: lwp 412
360.803708     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.804014     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.804231     [threads] resume_one_lwp_throw: Resuming lwp 412 (continue, signal 0, stop not expected)
360.804558     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.412
360.804802     [threads] proceed_one_lwp: lwp 414
360.805030     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.805240     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.805447     [threads] resume_one_lwp_throw: Resuming lwp 414 (continue, signal 0, stop not expected)
360.805769     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.414
360.806007     [threads] proceed_one_lwp: lwp 433
360.806230     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.806442     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.806649     [threads] resume_one_lwp_throw: Resuming lwp 433 (continue, signal 0, stop not expected)
360.806971     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.433
360.807212     [threads] proceed_one_lwp: lwp 436
360.807434     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.807643     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.807850     [threads] resume_one_lwp_throw: Resuming lwp 436 (continue, signal 0, stop not expected)
360.808228     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.436
360.808468     [threads] proceed_one_lwp: lwp 437
360.808691     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.808900     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.809110     [threads] resume_one_lwp_throw: Resuming lwp 437 (continue, signal 0, stop not expected)
360.809477     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.437
360.809716     [threads] proceed_one_lwp: lwp 483
360.809938     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.810384     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.810595     [threads] resume_one_lwp_throw: Resuming lwp 483 (continue, signal 0, stop not expected)
360.810932     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.483
360.811211     [threads] proceed_one_lwp: lwp 484
360.811435     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.811647     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.811853     [threads] resume_one_lwp_throw: Resuming lwp 484 (continue, signal 0, stop not expected)
360.812175     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.484
360.812416     [threads] proceed_one_lwp: lwp 493
360.812639     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.812851     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
360.813057     [threads] resume_one_lwp_throw: Resuming lwp 493 (continue, signal 0, stop not expected)
360.813383     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.493
360.813608     [threads] proceed_one_lwp: lwp 508
360.813821     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.814021     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.814219     [threads] resume_one_lwp_throw: Resuming lwp 508 (continue, signal 0, stop not expected)
360.814542     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.508
360.814806     [threads] proceed_one_lwp: lwp 613
360.815020     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.815224     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.815426     [threads] resume_one_lwp_throw: Resuming lwp 613 (continue, signal 0, stop not expected)
360.815785     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.613
360.816011     [threads] proceed_one_lwp: lwp 624
360.816224     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.816431     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.816630     [threads] resume_one_lwp_throw: Resuming lwp 624 (continue, signal 0, stop not expected)
360.816948     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.624
360.817211     [threads] proceed_one_lwp: lwp 655
360.817426     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.817633     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.817833     [threads] resume_one_lwp_throw: Resuming lwp 655 (continue, signal 0, stop not expected)
360.818188     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.655
360.818417     [threads] proceed_one_lwp: lwp 660
360.818633     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.818833     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.819031     [threads] resume_one_lwp_throw: Resuming lwp 660 (continue, signal 0, stop not expected)
360.819344     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.660
360.819579     [threads] proceed_one_lwp: lwp 661
360.819795     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.819997     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.820259     [threads] resume_one_lwp_throw: Resuming lwp 661 (continue, signal 0, stop not expected)
360.820579     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.661
360.820875     [threads] proceed_one_lwp: lwp 1074
360.821153     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.821367     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.821590     [threads] resume_one_lwp_throw: Resuming lwp 1074 (continue, signal 0, stop not expected)
360.822069     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1074
360.822370     [threads] proceed_one_lwp: lwp 1118
360.822593     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.822810     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.823020     [threads] resume_one_lwp_throw: Resuming lwp 1118 (continue, signal 0, stop not expected)
360.823347     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1118
360.823586     [threads] proceed_one_lwp: lwp 1293
360.823812     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.824022     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
360.824228     [threads] resume_one_lwp_throw: Resuming lwp 1293 (continue, signal 0, stop not expected)
360.824551     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1293
360.824800     [threads] proceed_one_lwp: lwp 3025
360.825013     [threads] proceed_one_lwp:    client wants LWP to remain 3025 stopped
360.825257     [threads] proceed_one_lwp: lwp 3027
360.825587     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.825813     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
360.826021     [threads] resume_one_lwp_throw: Resuming lwp 3027 (continue, signal 0, stop not expected)
360.826367     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3027
360.826646     [threads] proceed_one_lwp: lwp 3028
360.826958     [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.827188     [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
360.827529     [threads] resume_one_lwp_throw: Resuming lwp 3028 (continue, signal 0, stop not expected)
360.827979     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3028
360.828282   [threads] unstop_all_lwps: exit
360.828495   [threads] stop_all_lwps: enter
360.828699     [threads] stop_all_lwps: stop, except=none
360.828908     [threads] send_sigstop: Sending sigstop to lwp 349
sigchld_handler
360.829359     [threads] send_sigstop: Sending sigstop to lwp 350
sigchld_handler
360.829778     [threads] send_sigstop: Sending sigstop to lwp 351
sigchld_handler
360.830287     [threads] send_sigstop: Sending sigstop to lwp 352
sigchld_handler
360.830769     [threads] send_sigstop: Sending sigstop to lwp 357
360.831343 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 358
sigchld_handler
360.831889     [threads] send_sigstop: Sending sigstop to lwp 359
360.832272     [threads] send_sigstop: Sending sigstop to lwp 360
360.832550 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 361
360.832962     [threads] send_sigstop: Sending sigstop to lwp 364
sigchld_handler
360.833530     [threads] send_sigstop: Sending sigstop to lwp 365
sigchld_handler
360.834065     [threads] send_sigstop: Sending sigstop to lwp 366
360.834327 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 367
sigchld_handler
360.834950     [threads] send_sigstop: Sending sigstop to lwp 368
360.835204 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 369
360.835563 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 370
sigchld_handler
360.836081     [threads] send_sigstop: Sending sigstop to lwp 371
sigchld_handler
360.836500     [threads] send_sigstop: Sending sigstop to lwp 372
360.836754 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 373
sigchld_handler
360.837278     [threads] send_sigstop: Sending sigstop to lwp 374
360.837559 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 375
sigchld_handler
360.838135     [threads] send_sigstop: Sending sigstop to lwp 376
sigchld_handler
360.838553     [threads] send_sigstop: Sending sigstop to lwp 377
360.838800 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 378
360.839202 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 380
360.839681 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 381
sigchld_handler
360.840317     [threads] send_sigstop: Sending sigstop to lwp 382
360.840579 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 383
360.840931 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 384
360.841442 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 385
360.841801 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 386
360.842144 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 387
sigchld_handler
360.842652     [threads] send_sigstop: Sending sigstop to lwp 388
sigchld_handler
360.843049     [threads] send_sigstop: Sending sigstop to lwp 389
sigchld_handler
360.843445     [threads] send_sigstop: Sending sigstop to lwp 390
360.843692 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 391
sigchld_handler
360.844282     [threads] send_sigstop: Sending sigstop to lwp 392
sigchld_handler
360.844794     [threads] send_sigstop: Sending sigstop to lwp 393
360.845092     [threads] send_sigstop: Sending sigstop to lwp 394
360.845367 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 395
360.845748 sigchld_handler
    [threads] send_sigstop: Have pending sigstop for lwp 396
360.846079     [threads] send_sigstop: Sending sigstop to lwp 397
360.846314 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 398
360.846655 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 399
360.847001 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 400
360.847340 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 401
360.847673 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 403
sigchld_handler
360.848275     [threads] send_sigstop: Sending sigstop to lwp 404
sigchld_handler
360.848759     [threads] send_sigstop: Sending sigstop to lwp 405
360.849006 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 406
360.849343 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 407
360.849685 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 408
sigchld_handler
360.851717     [threads] send_sigstop: Sending sigstop to lwp 409
360.851995 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 411
360.852369 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 412
360.852720 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 414
360.853492 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 433
360.854164 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 436
sigchld_handler
360.855007     [threads] send_sigstop: Sending sigstop to lwp 437
sigchld_handler
360.855830     [threads] send_sigstop: Sending sigstop to lwp 483
360.856101 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 484
360.856828 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 493
360.857195 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 508
360.857880 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 613
sigchld_handler
360.858835     [threads] send_sigstop: Sending sigstop to lwp 624
360.859416 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 655
sigchld_handler
360.860753     [threads] send_sigstop: Sending sigstop to lwp 660
360.861024 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 661
360.861795 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1074
360.862579 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1118
360.862992 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1293
360.863388 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 3027
360.863796 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 3028
360.864258 sigchld_handler
    [threads] wait_for_sigstop: pulling events
360.864708     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3028, ERRNO-OK
360.865009     [threads] wait_for_event_filtered: waitpid 3028 received SIGSTOP - Stopped (signal) (stopped)
360.865479     [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
360.865765     [threads] get_pc: pc is 0x4ea70c34
360.866025     [threads] filter_event: Expected stop.
360.866276     [threads] filter_event: SIGSTOP caught for LWP 316.3028 while stopping threads.
360.866705     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3027, ERRNO-OK
360.866998     [threads] wait_for_event_filtered: waitpid 3027 received SIGSTOP - Stopped (signal) (stopped)
360.867428     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.867708     [threads] get_pc: pc is 0x4e97c216
360.867808     [threads] filter_event: Expected stop.
360.868010     [threads] filter_event: SIGSTOP caught for LWP 316.3027 while stopping threads.
360.868121     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1293, ERRNO-OK
360.868238     [threads] wait_for_event_filtered: waitpid 1293 received SIGSTOP - Stopped (signal) (stopped)
360.868469     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.868591     [threads] get_pc: pc is 0x4e97c214
360.868664     [threads] filter_event: Expected stop.
360.868743     [threads] filter_event: SIGSTOP caught for LWP 316.1293 while stopping threads.
360.868827     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1118, ERRNO-OK
360.869078     [threads] wait_for_event_filtered: waitpid 1118 received SIGSTOP - Stopped (signal) (stopped)
360.869639     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.869920     [threads] get_pc: pc is 0x4e97c214
360.870333     [threads] filter_event: Expected stop.
360.870560     [threads] filter_event: SIGSTOP caught for LWP 316.1118 while stopping threads.
360.870790     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1074, ERRNO-OK
360.871042     [threads] wait_for_event_filtered: waitpid 1074 received SIGSTOP - Stopped (signal) (stopped)
360.871563     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.871836     [threads] get_pc: pc is 0x4e97c214
360.872100     [threads] filter_event: Expected stop.
360.872441     [threads] filter_event: SIGSTOP caught for LWP 316.1074 while stopping threads.
360.872702     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 661, ERRNO-OK
360.872985     [threads] wait_for_event_filtered: waitpid 661 received SIGSTOP - Stopped (signal) (stopped)
360.873422     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.873623     [threads] get_pc: pc is 0x4e97c216
360.874076     [threads] filter_event: Expected stop.
360.874347     [threads] filter_event: SIGSTOP caught for LWP 316.661 while stopping threads.
360.874617     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 660, ERRNO-OK
360.875046     [threads] wait_for_event_filtered: waitpid 660 received SIGSTOP - Stopped (signal) (stopped)
360.875503     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.875700     [threads] get_pc: pc is 0x4e97c216
360.876029     [threads] filter_event: Expected stop.
360.876422     [threads] filter_event: SIGSTOP caught for LWP 316.660 while stopping threads.
360.876714     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 655, ERRNO-OK
360.876982     [threads] wait_for_event_filtered: waitpid 655 received SIGSTOP - Stopped (signal) (stopped)
360.877499     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.877769     [threads] get_pc: pc is 0x4e97c214
360.878029     [threads] filter_event: Expected stop.
360.878295     [threads] filter_event: SIGSTOP caught for LWP 316.655 while stopping threads.
360.878684     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 624, ERRNO-OK
360.879070     [threads] wait_for_event_filtered: waitpid 624 received SIGSTOP - Stopped (signal) (stopped)
360.879509     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.879891     [threads] get_pc: pc is 0x4e97c214
360.880196     [threads] filter_event: Expected stop.
360.880456     [threads] filter_event: SIGSTOP caught for LWP 316.624 while stopping threads.
360.880808     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 613, ERRNO-OK
360.881091     [threads] wait_for_event_filtered: waitpid 613 received SIGSTOP - Stopped (signal) (stopped)
360.881530     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.881790     [threads] get_pc: pc is 0x4e97c216
360.882234     [threads] filter_event: Expected stop.
360.882503     [threads] filter_event: SIGSTOP caught for LWP 316.613 while stopping threads.
360.882759     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 508, ERRNO-OK
360.883150     [threads] wait_for_event_filtered: waitpid 508 received SIGSTOP - Stopped (signal) (stopped)
360.883585     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.883880     [threads] get_pc: pc is 0x4e97c216
360.884123     [threads] filter_event: Expected stop.
360.884594     [threads] filter_event: SIGSTOP caught for LWP 316.508 while stopping threads.
360.884878     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 493, ERRNO-OK
360.885165     [threads] wait_for_event_filtered: waitpid 493 received SIGSTOP - Stopped (signal) (stopped)
360.885580     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.885880     [threads] get_pc: pc is 0x4eb53d34
360.886120     [threads] filter_event: Expected stop.
360.886397     [threads] filter_event: SIGSTOP caught for LWP 316.493 while stopping threads.
360.886659     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 484, ERRNO-OK
360.886945     [threads] wait_for_event_filtered: waitpid 484 received SIGSTOP - Stopped (signal) (stopped)
360.887350     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.887763     [threads] get_pc: pc is 0x4e97c216
360.887979     [threads] filter_event: Expected stop.
360.888197     [threads] filter_event: SIGSTOP caught for LWP 316.484 while stopping threads.
360.888516     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 483, ERRNO-OK
360.888853     [threads] wait_for_event_filtered: waitpid 483 received SIGSTOP - Stopped (signal) (stopped)
360.889217     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.889441     [threads] get_pc: pc is 0x4e97c216
360.889650     [threads] filter_event: Expected stop.
360.889871     [threads] filter_event: SIGSTOP caught for LWP 316.483 while stopping threads.
360.890163     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 437, ERRNO-OK
360.890407     [threads] wait_for_event_filtered: waitpid 437 received SIGSTOP - Stopped (signal) (stopped)
360.890778     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.891013     [threads] get_pc: pc is 0x4e97c216
360.891229     [threads] filter_event: Expected stop.
360.891449     [threads] filter_event: SIGSTOP caught for LWP 316.437 while stopping threads.
360.891683     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 436, ERRNO-OK
360.891928     [threads] wait_for_event_filtered: waitpid 436 received SIGSTOP - Stopped (signal) (stopped)
360.892318     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.892570     [threads] get_pc: pc is 0x4e97c214
360.892828     [threads] filter_event: Expected stop.
360.893063     [threads] filter_event: SIGSTOP caught for LWP 316.436 while stopping threads.
360.893526     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 433, ERRNO-OK
360.893818     [threads] wait_for_event_filtered: waitpid 433 received SIGSTOP - Stopped (signal) (stopped)
360.894257     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.894515     [threads] get_pc: pc is 0x4e97c216
360.894905     [threads] filter_event: Expected stop.
360.895258     [threads] filter_event: SIGSTOP caught for LWP 316.433 while stopping threads.
360.895563     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 414, ERRNO-OK
360.895930     [threads] wait_for_event_filtered: waitpid 414 received SIGSTOP - Stopped (signal) (stopped)
360.896437     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.896719     [threads] get_pc: pc is 0x4e97c216
360.896968     [threads] filter_event: Expected stop.
360.897316     [threads] filter_event: SIGSTOP caught for LWP 316.414 while stopping threads.
360.897612     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 412, ERRNO-OK
360.897895     [threads] wait_for_event_filtered: waitpid 412 received SIGSTOP - Stopped (signal) (stopped)
360.898318     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.898616     [threads] get_pc: pc is 0x4e97c216
360.898856     [threads] filter_event: Expected stop.
360.899116     [threads] filter_event: SIGSTOP caught for LWP 316.412 while stopping threads.
360.899402     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 411, ERRNO-OK
360.899685     [threads] wait_for_event_filtered: waitpid 411 received SIGSTOP - Stopped (signal) (stopped)
360.900164     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.900453     [threads] get_pc: pc is 0x4e97c214
360.900695     [threads] filter_event: Expected stop.
360.901119     [threads] filter_event: SIGSTOP caught for LWP 316.411 while stopping threads.
360.901480     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 409, ERRNO-OK
360.902002     [threads] wait_for_event_filtered: waitpid 409 received SIGSTOP - Stopped (signal) (stopped)
360.902447     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.902727     [threads] get_pc: pc is 0x4e97c216
360.902971     [threads] filter_event: Expected stop.
360.903361     [threads] filter_event: SIGSTOP caught for LWP 316.409 while stopping threads.
360.903779     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 408, ERRNO-OK
360.904082     [threads] wait_for_event_filtered: waitpid 408 received SIGSTOP - Stopped (signal) (stopped)
360.904500     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.904795     [threads] get_pc: pc is 0x4e97c216
360.905037     [threads] filter_event: Expected stop.
360.905299     [threads] filter_event: SIGSTOP caught for LWP 316.408 while stopping threads.
360.905587     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 407, ERRNO-OK
360.905864     [threads] wait_for_event_filtered: waitpid 407 received SIGSTOP - Stopped (signal) (stopped)
360.906467     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.906729     [threads] get_pc: pc is 0x4e97c214
360.906988     [threads] filter_event: Expected stop.
360.907251     [threads] filter_event: SIGSTOP caught for LWP 316.407 while stopping threads.
360.907536     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 406, ERRNO-OK
360.907810     [threads] wait_for_event_filtered: waitpid 406 received SIGSTOP - Stopped (signal) (stopped)
360.908230     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.908485     [threads] get_pc: pc is 0x4e97c216
360.908742     [threads] filter_event: Expected stop.
360.909005     [threads] filter_event: SIGSTOP caught for LWP 316.406 while stopping threads.
360.909289     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 405, ERRNO-OK
360.909553     [threads] wait_for_event_filtered: waitpid 405 received SIGSTOP - Stopped (signal) (stopped)
360.909971     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.910321     [threads] get_pc: pc is 0x4e97c216
360.910563     [threads] filter_event: Expected stop.
360.910828     [threads] filter_event: SIGSTOP caught for LWP 316.405 while stopping threads.
360.911310     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 404, ERRNO-OK
360.911588     [threads] wait_for_event_filtered: waitpid 404 received SIGSTOP - Stopped (signal) (stopped)
360.912025     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.912301     [threads] get_pc: pc is 0x4e97c216
360.912553     [threads] filter_event: Expected stop.
360.912798     [threads] filter_event: SIGSTOP caught for LWP 316.404 while stopping threads.
360.913090     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 403, ERRNO-OK
360.913369     [threads] wait_for_event_filtered: waitpid 403 received SIGSTOP - Stopped (signal) (stopped)
360.913785     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.914043     [threads] get_pc: pc is 0x4e97c216
360.914294     [threads] filter_event: Expected stop.
360.914536     [threads] filter_event: SIGSTOP caught for LWP 316.403 while stopping threads.
360.914820     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 401, ERRNO-OK
360.915102     [threads] wait_for_event_filtered: waitpid 401 received SIGSTOP - Stopped (signal) (stopped)
360.915513     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.915765     [threads] get_pc: pc is 0x4e97c216
360.916230     [threads] filter_event: Expected stop.
360.916482     [threads] filter_event: SIGSTOP caught for LWP 316.401 while stopping threads.
360.916776     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 400, ERRNO-OK
360.917062     [threads] wait_for_event_filtered: waitpid 400 received SIGSTOP - Stopped (signal) (stopped)
360.917572     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.917914     [threads] get_pc: pc is 0x4e97c214
360.918246     [threads] filter_event: Expected stop.
360.918501     [threads] filter_event: SIGSTOP caught for LWP 316.400 while stopping threads.
360.918792     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 399, ERRNO-OK
360.919137     [threads] wait_for_event_filtered: waitpid 399 received SIGSTOP - Stopped (signal) (stopped)
360.919565     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.919962     [threads] get_pc: pc is 0x4eb53d34
360.920391     [threads] filter_event: Expected stop.
360.920677     [threads] filter_event: SIGSTOP caught for LWP 316.399 while stopping threads.
360.920978     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 398, ERRNO-OK
360.921249     [threads] wait_for_event_filtered: waitpid 398 received SIGSTOP - Stopped (signal) (stopped)
360.921671     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.921947     [threads] get_pc: pc is 0x4e97c216
360.922188     [threads] filter_event: Expected stop.
360.922453     [threads] filter_event: SIGSTOP caught for LWP 316.398 while stopping threads.
360.922872     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 397, ERRNO-OK
360.923162     [threads] wait_for_event_filtered: waitpid 397 received SIGSTOP - Stopped (signal) (stopped)
360.923709     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.923963     [threads] get_pc: pc is 0x4e97c216
360.924219     [threads] filter_event: Expected stop.
360.924485     [threads] filter_event: SIGSTOP caught for LWP 316.397 while stopping threads.
360.924778     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 396, ERRNO-OK
360.925059     [threads] wait_for_event_filtered: waitpid 396 received SIGSTOP - Stopped (signal) (stopped)
360.925524     [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
360.925806     [threads] get_pc: pc is 0x4e9fb3e8
360.926048     [threads] filter_event: Expected stop.
360.926379     [threads] filter_event: SIGSTOP caught for LWP 316.396 while stopping threads.
360.926790     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 395, ERRNO-OK
360.927064     [threads] wait_for_event_filtered: waitpid 395 received SIGSTOP - Stopped (signal) (stopped)
360.927477     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.927753     [threads] get_pc: pc is 0x4e97c216
360.928129     [threads] filter_event: Expected stop.
360.928492     [threads] filter_event: SIGSTOP caught for LWP 316.395 while stopping threads.
360.928812     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 394, ERRNO-OK
360.929096     [threads] wait_for_event_filtered: waitpid 394 received SIGSTOP - Stopped (signal) (stopped)
360.929569     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.929964     [threads] get_pc: pc is 0x4e97c216
360.930264     [threads] filter_event: Expected stop.
360.930532     [threads] filter_event: SIGSTOP caught for LWP 316.394 while stopping threads.
360.930904     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 393, ERRNO-OK
360.931266     [threads] wait_for_event_filtered: waitpid 393 received SIGSTOP - Stopped (signal) (stopped)
360.931760     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.932020     [threads] get_pc: pc is 0x4eb53d34
360.932277     [threads] filter_event: Expected stop.
360.932537     [threads] filter_event: SIGSTOP caught for LWP 316.393 while stopping threads.
360.932837     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 392, ERRNO-OK
360.933239     [threads] wait_for_event_filtered: waitpid 392 received SIGSTOP - Stopped (signal) (stopped)
360.933532     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.933711     [threads] get_pc: pc is 0x4e97c216
360.933961     [threads] filter_event: Expected stop.
360.934223     [threads] filter_event: SIGSTOP caught for LWP 316.392 while stopping threads.
360.934734     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 391, ERRNO-OK
360.934965     [threads] wait_for_event_filtered: waitpid 391 received SIGSTOP - Stopped (signal) (stopped)
360.935367     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.935730     [threads] get_pc: pc is 0x4e97c216
360.936103     [threads] filter_event: Expected stop.
360.936374     [threads] filter_event: SIGSTOP caught for LWP 316.391 while stopping threads.
360.936669     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 390, ERRNO-OK
360.936939     [threads] wait_for_event_filtered: waitpid 390 received SIGSTOP - Stopped (signal) (stopped)
360.937415     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.937697     [threads] get_pc: pc is 0x4e97c216
360.938144     [threads] filter_event: Expected stop.
360.938425     [threads] filter_event: SIGSTOP caught for LWP 316.390 while stopping threads.
360.938723     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 389, ERRNO-OK
360.939102     [threads] wait_for_event_filtered: waitpid 389 received SIGSTOP - Stopped (signal) (stopped)
360.939505     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.939891     [threads] get_pc: pc is 0x4e97c216
360.940498     [threads] filter_event: Expected stop.
360.940767     [threads] filter_event: SIGSTOP caught for LWP 316.389 while stopping threads.
360.941069     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 388, ERRNO-OK
360.941359     [threads] wait_for_event_filtered: waitpid 388 received SIGSTOP - Stopped (signal) (stopped)
360.941755     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.942027     [threads] get_pc: pc is 0x4e97c216
360.942394     [threads] filter_event: Expected stop.
360.942621     [threads] filter_event: SIGSTOP caught for LWP 316.388 while stopping threads.
360.942880     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 387, ERRNO-OK
360.943128     [threads] wait_for_event_filtered: waitpid 387 received SIGSTOP - Stopped (signal) (stopped)
360.943482     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.943705     [threads] get_pc: pc is 0x4e97c216
360.943913     [threads] filter_event: Expected stop.
360.944127     [threads] filter_event: SIGSTOP caught for LWP 316.387 while stopping threads.
360.944379     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 386, ERRNO-OK
360.944616     [threads] wait_for_event_filtered: waitpid 386 received SIGSTOP - Stopped (signal) (stopped)
360.944955     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.945177     [threads] get_pc: pc is 0x4e97c216
360.945392     [threads] filter_event: Expected stop.
360.945610     [threads] filter_event: SIGSTOP caught for LWP 316.386 while stopping threads.
360.945865     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 385, ERRNO-OK
360.946229     [threads] wait_for_event_filtered: waitpid 385 received SIGSTOP - Stopped (signal) (stopped)
360.946576     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.946843     [threads] get_pc: pc is 0x4e97c216
360.947102     [threads] filter_event: Expected stop.
360.947330     [threads] filter_event: SIGSTOP caught for LWP 316.385 while stopping threads.
360.947747     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 384, ERRNO-OK
360.948047     [threads] wait_for_event_filtered: waitpid 384 received SIGSTOP - Stopped (signal) (stopped)
360.948453     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.948724     [threads] get_pc: pc is 0x4e97c216
360.948969     [threads] filter_event: Expected stop.
360.949319     [threads] filter_event: SIGSTOP caught for LWP 316.384 while stopping threads.
360.949636     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 383, ERRNO-OK
360.950089     [threads] wait_for_event_filtered: waitpid 383 received SIGSTOP - Stopped (signal) (stopped)
360.950595     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.950968     [threads] get_pc: pc is 0x4e97c214
360.951230     [threads] filter_event: Expected stop.
360.951490     [threads] filter_event: SIGSTOP caught for LWP 316.383 while stopping threads.
360.951864     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 382, ERRNO-OK
360.952159     [threads] wait_for_event_filtered: waitpid 382 received SIGSTOP - Stopped (signal) (stopped)
360.952701     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.952979     [threads] get_pc: pc is 0x4e97c216
360.953315     [threads] filter_event: Expected stop.
360.953585     [threads] filter_event: SIGSTOP caught for LWP 316.382 while stopping threads.
360.953898     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 381, ERRNO-OK
360.954290     [threads] wait_for_event_filtered: waitpid 381 received SIGSTOP - Stopped (signal) (stopped)
360.954694     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
360.954952     [threads] get_pc: pc is 0x4e9f6646
360.955305     [threads] filter_event: Expected stop.
360.955579     [threads] filter_event: SIGSTOP caught for LWP 316.381 while stopping threads.
360.955899     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 380, ERRNO-OK
360.956186     [threads] wait_for_event_filtered: waitpid 380 received SIGSTOP - Stopped (signal) (stopped)
360.956650     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.956909     [threads] get_pc: pc is 0x4e97c214
360.957168     [threads] filter_event: Expected stop.
360.957532     [threads] filter_event: SIGSTOP caught for LWP 316.380 while stopping threads.
360.957845     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 378, ERRNO-OK
360.958136     [threads] wait_for_event_filtered: waitpid 378 received SIGSTOP - Stopped (signal) (stopped)
360.958594     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.958859     [threads] get_pc: pc is 0x4e97c216
360.959208     [threads] filter_event: Expected stop.
360.959584     [threads] filter_event: SIGSTOP caught for LWP 316.378 while stopping threads.
360.959893     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 377, ERRNO-OK
360.960240     [threads] wait_for_event_filtered: waitpid 377 received SIGSTOP - Stopped (signal) (stopped)
360.960630     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.961038     [threads] get_pc: pc is 0x4e97c216
360.961305     [threads] filter_event: Expected stop.
360.961699     [threads] filter_event: SIGSTOP caught for LWP 316.377 while stopping threads.
360.962040     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 376, ERRNO-OK
360.962333     [threads] wait_for_event_filtered: waitpid 376 received SIGSTOP - Stopped (signal) (stopped)
360.962723     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.963147     [threads] get_pc: pc is 0x4e97c216
360.963410     [threads] filter_event: Expected stop.
360.963654     [threads] filter_event: SIGSTOP caught for LWP 316.376 while stopping threads.
360.964068     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 375, ERRNO-OK
360.964363     [threads] wait_for_event_filtered: waitpid 375 received SIGSTOP - Stopped (signal) (stopped)
360.964745     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.965202     [threads] get_pc: pc is 0x4e97c216
360.965478     [threads] filter_event: Expected stop.
360.965742     [threads] filter_event: SIGSTOP caught for LWP 316.375 while stopping threads.
360.966053     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 374, ERRNO-OK
360.966444     [threads] wait_for_event_filtered: waitpid 374 received SIGSTOP - Stopped (signal) (stopped)
360.966851     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.967105     [threads] get_pc: pc is 0x4e97c214
360.967512     [threads] filter_event: Expected stop.
360.967777     [threads] filter_event: SIGSTOP caught for LWP 316.374 while stopping threads.
360.968191     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 373, ERRNO-OK
360.968486     [threads] wait_for_event_filtered: waitpid 373 received SIGSTOP - Stopped (signal) (stopped)
360.968998     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.969395     [threads] get_pc: pc is 0x4e97c216
360.969484     [threads] filter_event: Expected stop.
360.969567     [threads] filter_event: SIGSTOP caught for LWP 316.373 while stopping threads.
360.969696     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 372, ERRNO-OK
360.969794     [threads] wait_for_event_filtered: waitpid 372 received SIGSTOP - Stopped (signal) (stopped)
360.969982     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.970292     [threads] get_pc: pc is 0x4e97c216
360.970382     [threads] filter_event: Expected stop.
360.970557     [threads] filter_event: SIGSTOP caught for LWP 316.372 while stopping threads.
360.970688     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 371, ERRNO-OK
360.970790     [threads] wait_for_event_filtered: waitpid 371 received SIGSTOP - Stopped (signal) (stopped)
360.970982     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.971159     [threads] get_pc: pc is 0x4e97c214
360.971528     [threads] filter_event: Expected stop.
360.971797     [threads] filter_event: SIGSTOP caught for LWP 316.371 while stopping threads.
360.972111     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 370, ERRNO-OK
360.972507     [threads] wait_for_event_filtered: waitpid 370 received SIGSTOP - Stopped (signal) (stopped)
360.972902     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.973094     [threads] get_pc: pc is 0x4e97c216
360.973334     [threads] filter_event: Expected stop.
360.973593     [threads] filter_event: SIGSTOP caught for LWP 316.370 while stopping threads.
360.973908     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 369, ERRNO-OK
360.974193     [threads] wait_for_event_filtered: waitpid 369 received SIGSTOP - Stopped (signal) (stopped)
360.974568     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.974842     [threads] get_pc: pc is 0x4e97c214
360.975081     [threads] filter_event: Expected stop.
360.975343     [threads] filter_event: SIGSTOP caught for LWP 316.369 while stopping threads.
360.975662     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 368, ERRNO-OK
360.975955     [threads] wait_for_event_filtered: waitpid 368 received SIGSTOP - Stopped (signal) (stopped)
360.976350     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
360.976602     [threads] get_pc: pc is 0x4eb53d34
360.976858     [threads] filter_event: Expected stop.
360.977103     [threads] filter_event: SIGSTOP caught for LWP 316.368 while stopping threads.
360.977432     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 367, ERRNO-OK
360.977899     [threads] wait_for_event_filtered: waitpid 367 received SIGSTOP - Stopped (signal) (stopped)
360.978403     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.978679     [threads] get_pc: pc is 0x4e97c214
360.978937     [threads] filter_event: Expected stop.
360.979275     [threads] filter_event: SIGSTOP caught for LWP 316.367 while stopping threads.
360.979603     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 366, ERRNO-OK
360.979902     [threads] wait_for_event_filtered: waitpid 366 received SIGSTOP - Stopped (signal) (stopped)
360.980341     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.980690     [threads] get_pc: pc is 0x4e97c216
360.980949     [threads] filter_event: Expected stop.
360.981216     [threads] filter_event: SIGSTOP caught for LWP 316.366 while stopping threads.
360.981643     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 365, ERRNO-OK
360.982031     [threads] wait_for_event_filtered: waitpid 365 received SIGSTOP - Stopped (signal) (stopped)
360.982441     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.982713     [threads] get_pc: pc is 0x4e97c216
360.983072     [threads] filter_event: Expected stop.
360.983343     [threads] filter_event: SIGSTOP caught for LWP 316.365 while stopping threads.
360.983666     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 364, ERRNO-OK
360.983955     [threads] wait_for_event_filtered: waitpid 364 received SIGSTOP - Stopped (signal) (stopped)
360.984351     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.984801     [threads] get_pc: pc is 0x4e97c216
360.985069     [threads] filter_event: Expected stop.
360.985487     [threads] filter_event: SIGSTOP caught for LWP 316.364 while stopping threads.
360.985828     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 361, ERRNO-OK
360.986128     [threads] wait_for_event_filtered: waitpid 361 received SIGSTOP - Stopped (signal) (stopped)
360.986704     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
360.986967     [threads] get_pc: pc is 0x4e97c214
360.987216     [threads] filter_event: Expected stop.
360.987488     [threads] filter_event: SIGSTOP caught for LWP 316.361 while stopping threads.
360.987881     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 360, ERRNO-OK
360.988072     [threads] wait_for_event_filtered: waitpid 360 received SIGSTOP - Stopped (signal) (stopped)
360.988277     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.988435     [threads] get_pc: pc is 0x4e97c216
360.988677     [threads] filter_event: Expected stop.
360.988938     [threads] filter_event: SIGSTOP caught for LWP 316.360 while stopping threads.
360.989256     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 359, ERRNO-OK
360.989550     [threads] wait_for_event_filtered: waitpid 359 received SIGSTOP - Stopped (signal) (stopped)
360.989926     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.990245     [threads] get_pc: pc is 0x4e97c216
360.990492     [threads] filter_event: Expected stop.
360.990757     [threads] filter_event: SIGSTOP caught for LWP 316.359 while stopping threads.
360.991077     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 358, ERRNO-OK
360.991366     [threads] wait_for_event_filtered: waitpid 358 received SIGSTOP - Stopped (signal) (stopped)
360.991761     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.992190     [threads] get_pc: pc is 0x4e97c216
360.992648     [threads] filter_event: Expected stop.
360.992905     [threads] filter_event: SIGSTOP caught for LWP 316.358 while stopping threads.
360.993252     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 357, ERRNO-OK
360.993694     [threads] wait_for_event_filtered: waitpid 357 received SIGSTOP - Stopped (signal) (stopped)
360.994113     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.994387     [threads] get_pc: pc is 0x4e97c216
360.994626     [threads] filter_event: Expected stop.
360.995032     [threads] filter_event: SIGSTOP caught for LWP 316.357 while stopping threads.
360.995365     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 352, ERRNO-OK
360.995656     [threads] wait_for_event_filtered: waitpid 352 received SIGSTOP - Stopped (signal) (stopped)
360.996033     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.996622     [threads] get_pc: pc is 0x4e97c216
360.996869     [threads] filter_event: Expected stop.
360.997090     [threads] filter_event: SIGSTOP caught for LWP 316.352 while stopping threads.
360.997379     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 351, ERRNO-OK
360.997627     [threads] wait_for_event_filtered: waitpid 351 received SIGSTOP - Stopped (signal) (stopped)
360.998082     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
360.998450     [threads] get_pc: pc is 0x4e97c216
360.998667     [threads] filter_event: Expected stop.
360.998890     [threads] filter_event: SIGSTOP caught for LWP 316.351 while stopping threads.
360.999295     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 350, ERRNO-OK
360.999543     [threads] wait_for_event_filtered: waitpid 350 received SIGSTOP - Stopped (signal) (stopped)
360.999869     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.000159     [threads] get_pc: pc is 0x4e97c214
361.000375     [threads] filter_event: Expected stop.
361.000594     [threads] filter_event: SIGSTOP caught for LWP 316.350 while stopping threads.
361.000879     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 349, ERRNO-OK
361.001126     [threads] wait_for_event_filtered: waitpid 349 received SIGSTOP - Stopped (signal) (stopped)
361.001510     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.001777     [threads] get_pc: pc is 0x4e97c214
361.002045     [threads] filter_event: Expected stop.
361.002313     [threads] filter_event: SIGSTOP caught for LWP 316.349 while stopping threads.
361.002643     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
361.003413     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
361.004050     [threads] operator(): leader_pid=3025, leader_lp!=NULL=1, num_lwps=1, zombie=0
361.004438     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
361.004761     [threads] stop_all_lwps: setting stopping_threads back to !stopping
361.005014   [threads] stop_all_lwps: exit
361.005308   [threads] select_event_lwp: Select single-step LWP 316.379
361.005635   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
361.006058   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
361.006338   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
361.006621   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
361.006899   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
361.007169   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
361.007445   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
361.007698   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
361.008046   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
361.008310   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
361.008583   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
361.008855   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
361.009278   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
361.009572   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
361.009847   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
361.010175   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
361.010578   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
361.010956   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
361.011228   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
361.011491   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
361.012010   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
361.012290   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
361.012571   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
361.012909   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
361.013174   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
361.013449   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
361.013723   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
361.014096   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
361.014370   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
361.014801   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
361.015082   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
361.015372   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
361.015632   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
361.015905   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
361.016229   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
361.016570   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
361.016849   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
361.017118   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
361.017456   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
361.017801   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
361.018058   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
361.018326   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
361.018665   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
361.018949   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
361.019222   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
361.019584   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
361.019864   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
361.020190   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
361.020532   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
361.020807   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
361.021069   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
361.021471   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
361.021756   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
361.022239   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
361.022502   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
361.022775   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
361.023046   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
361.023405   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
361.023675   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
361.023949   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
361.024209   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
361.024494   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
361.024945   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
361.025321   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
361.025603   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
361.025875   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
361.026151   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
361.026507   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
361.026784   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
361.027060   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
361.027425   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
361.027702   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
361.027975   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
361.028358   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3025 needs to move out of the jump pad... no
361.028640   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
361.028897   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
361.029499   [threads] wait_1: ret = LWP 316.379, status->kind = STOPPED, sig = GDB_SIGNAL_TRAP
361.029865 [threads] wait_1: exit
361.030270 [threads] prepare_resume_reply: Writing resume reply for LWP 316.379:1
361.031902 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.032174 [threads] handle_serial_event: handling possible serial event
361.033883 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.034139 [threads] handle_serial_event: handling possible serial event
361.035521 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.035775 [threads] handle_serial_event: handling possible serial event
361.036469 [threads] resume: enter
361.036868   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
361.037161   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
361.037734   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
361.037998   [threads] resume: Not resuming, all-stop and found an LWP with pending status
361.038465   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
361.038761   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
361.039040   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
361.039284   [threads] resume_one_thread: leaving LWP 316 stopped
361.039551   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
361.039991   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.040412   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
361.040678   [threads] resume_one_thread: leaving LWP 349 stopped
361.040934   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
361.041209   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.041661   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
361.041912   [threads] resume_one_thread: leaving LWP 350 stopped
361.042176   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
361.042448   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.042791   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
361.043042   [threads] resume_one_thread: leaving LWP 351 stopped
361.043308   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
361.043582   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.043846   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
361.044109   [threads] resume_one_thread: leaving LWP 352 stopped
361.044501   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
361.044878   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.045148   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
361.045412   [threads] resume_one_thread: leaving LWP 357 stopped
361.045674   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
361.045947   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.046208   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
361.046467   [threads] resume_one_thread: leaving LWP 358 stopped
361.046730   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
361.046986   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.047333   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
361.047595   [threads] resume_one_thread: leaving LWP 359 stopped
361.047842   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
361.048114   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.048387   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
361.048630   [threads] resume_one_thread: leaving LWP 360 stopped
361.048893   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
361.049171   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.049440   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
361.049684   [threads] resume_one_thread: leaving LWP 361 stopped
361.049947   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
361.050272   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.050551   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
361.050809   [threads] resume_one_thread: leaving LWP 364 stopped
361.051058   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
361.051487   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.051721   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
361.051941   [threads] resume_one_thread: leaving LWP 365 stopped
361.052167   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
361.052399   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.052628   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
361.052845   [threads] resume_one_thread: leaving LWP 366 stopped
361.053063   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
361.053288   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.053521   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
361.053738   [threads] resume_one_thread: leaving LWP 367 stopped
361.054119   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
361.054356   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.054593   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
361.054811   [threads] resume_one_thread: leaving LWP 368 stopped
361.055030   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
361.055260   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.055491   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
361.055716   [threads] resume_one_thread: leaving LWP 369 stopped
361.055981   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
361.056230   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.056894   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
361.057151   [threads] resume_one_thread: leaving LWP 370 stopped
361.057417   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
361.057697   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.057959   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
361.058221   [threads] resume_one_thread: leaving LWP 371 stopped
361.058485   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
361.058745   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.059161   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
361.059525   [threads] resume_one_thread: leaving LWP 372 stopped
361.059797   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
361.060166   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.060435   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
361.060703   [threads] resume_one_thread: leaving LWP 373 stopped
361.061065   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
361.061349   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.061738   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
361.062009   [threads] resume_one_thread: leaving LWP 374 stopped
361.062273   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
361.062543   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.062803   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
361.063238   [threads] resume_one_thread: leaving LWP 375 stopped
361.063597   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
361.063889   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.064164   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
361.064493   [threads] resume_one_thread: leaving LWP 376 stopped
361.064860   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
361.065140   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.065413   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
361.065763   [threads] resume_one_thread: leaving LWP 377 stopped
361.066034   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
361.066310   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.066643   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
361.066895   [threads] resume_one_thread: leaving LWP 378 stopped
361.067161   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
361.067434   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.067691   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
361.068060   [threads] resume_one_thread: leaving LWP 379 stopped
361.068332   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
361.068591   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.068866   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
361.069230   [threads] resume_one_thread: leaving LWP 380 stopped
361.069510   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
361.069787   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.070370   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
361.070723   [threads] resume_one_thread: leaving LWP 381 stopped
361.070992   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
361.071280   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.071540   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
361.071798   [threads] resume_one_thread: leaving LWP 382 stopped
361.072059   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
361.072338   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.072595   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
361.072854   [threads] resume_one_thread: leaving LWP 383 stopped
361.073236   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
361.073638   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.073919   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
361.074166   [threads] resume_one_thread: leaving LWP 384 stopped
361.074516   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
361.074925   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.075206   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
361.075471   [threads] resume_one_thread: leaving LWP 385 stopped
361.075723   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
361.076116   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.076503   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
361.076767   [threads] resume_one_thread: leaving LWP 386 stopped
361.077029   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
361.077285   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.077742   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
361.077998   [threads] resume_one_thread: leaving LWP 387 stopped
361.078266   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
361.078611   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.079017   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
361.079272   [threads] resume_one_thread: leaving LWP 388 stopped
361.079537   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
361.079814   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.080301   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
361.080581   [threads] resume_one_thread: leaving LWP 389 stopped
361.080838   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
361.081113   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.081494   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
361.081844   [threads] resume_one_thread: leaving LWP 390 stopped
361.082113   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
361.082370   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.082712   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
361.083019   [threads] resume_one_thread: leaving LWP 391 stopped
361.083291   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
361.083566   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.083831   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
361.084160   [threads] resume_one_thread: leaving LWP 392 stopped
361.084429   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
361.085012   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.085234   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
361.085503   [threads] resume_one_thread: leaving LWP 393 stopped
361.085841   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
361.086123   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.086385   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
361.086780   [threads] resume_one_thread: leaving LWP 394 stopped
361.087072   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
361.087343   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.087616   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
361.087863   [threads] resume_one_thread: leaving LWP 395 stopped
361.088438   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
361.088782   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.089030   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
361.089297   [threads] resume_one_thread: leaving LWP 396 stopped
361.089666   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
361.090112   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.090399   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
361.090648   [threads] resume_one_thread: leaving LWP 397 stopped
361.090915   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
361.091275   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.091756   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
361.092009   [threads] resume_one_thread: leaving LWP 398 stopped
361.092286   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
361.092558   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.092830   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
361.093075   [threads] resume_one_thread: leaving LWP 399 stopped
361.093342   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
361.093616   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.093874   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
361.094137   [threads] resume_one_thread: leaving LWP 400 stopped
361.094405   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
361.094675   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.094933   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
361.095192   [threads] resume_one_thread: leaving LWP 401 stopped
361.095459   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
361.095716   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.096009   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
361.096257   [threads] resume_one_thread: leaving LWP 403 stopped
361.096523   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
361.096795   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.097320   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
361.097400   [threads] resume_one_thread: leaving LWP 404 stopped
361.097478   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
361.097560   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.097642   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
361.097714   [threads] resume_one_thread: leaving LWP 405 stopped
361.097790   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
361.097966   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.098227   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
361.098478   [threads] resume_one_thread: leaving LWP 406 stopped
361.098740   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
361.099011   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.099269   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
361.099533   [threads] resume_one_thread: leaving LWP 407 stopped
361.099792   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
361.100110   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.100396   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
361.100647   [threads] resume_one_thread: leaving LWP 408 stopped
361.100911   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
361.101182   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.101516   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
361.101785   [threads] resume_one_thread: leaving LWP 409 stopped
361.102037   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
361.102310   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
361.102582   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
361.102844   [threads] resume_one_thread: leaving LWP 410 stopped
361.103091   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
361.103363   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.103632   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
361.103879   [threads] resume_one_thread: leaving LWP 411 stopped
361.104142   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
361.104410   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.104680   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
361.104923   [threads] resume_one_thread: leaving LWP 412 stopped
361.105332   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
361.105616   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.105870   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
361.106087   [threads] resume_one_thread: leaving LWP 414 stopped
361.106496   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
361.106872   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.107103   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
361.107319   [threads] resume_one_thread: leaving LWP 433 stopped
361.107643   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
361.107998   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.108241   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
361.108458   [threads] resume_one_thread: leaving LWP 436 stopped
361.108677   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
361.108903   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.109136   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
361.109356   [threads] resume_one_thread: leaving LWP 437 stopped
361.109578   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
361.109806   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.110096   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
361.110368   [threads] resume_one_thread: leaving LWP 483 stopped
361.110596   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
361.110911   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.111205   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
361.111457   [threads] resume_one_thread: leaving LWP 484 stopped
361.111726   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
361.111999   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.112275   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
361.112521   [threads] resume_one_thread: leaving LWP 493 stopped
361.112782   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
361.113054   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.113324   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
361.113699   [threads] resume_one_thread: leaving LWP 508 stopped
361.114078   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
361.114178   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.114365   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
361.114440   [threads] resume_one_thread: leaving LWP 613 stopped
361.114518   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
361.114599   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.114682   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
361.114754   [threads] resume_one_thread: leaving LWP 624 stopped
361.114827   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
361.114905   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.114985   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
361.115055   [threads] resume_one_thread: leaving LWP 655 stopped
361.115129   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
361.115208   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.115374   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
361.115454   [threads] resume_one_thread: leaving LWP 660 stopped
361.115530   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
361.115789   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.116028   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
361.116299   [threads] resume_one_thread: leaving LWP 661 stopped
361.116564   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
361.116826   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.117100   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
361.117361   [threads] resume_one_thread: leaving LWP 1074 stopped
361.117612   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
361.118112   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.118481   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
361.118819   [threads] resume_one_thread: leaving LWP 1118 stopped
361.119087   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
361.119357   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.119633   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
361.119877   [threads] resume_one_thread: leaving LWP 1293 stopped
361.120327   [threads] operator(): [zyan1]  thread LWP 3025.3025 is going to call resume_one_thread, leave_all_stopped 1
361.120593   [threads] resume_one_thread: [zyan1]  thread LWP 3025.3025: 4624
361.120860   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 1
361.121131   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.121406   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: thread->last_resume_kind 0, line 4717
361.121672   [threads] resume_one_thread: leaving LWP 3027 stopped
361.121921   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 1
361.122192   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
361.122468   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: thread->last_resume_kind 0, line 4717
361.122731   [threads] resume_one_thread: leaving LWP 3028 stopped
361.122969 [threads] resume: exit
361.123340 [threads] wait_1: enter
361.123657   [threads] wait_1: [<all threads>]
361.123934   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
361.124218   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
361.124579   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.125087   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
361.125354   [threads] wait_for_event_filtered: Got a pending child 316
361.125612   [threads] wait_for_event_filtered: Got an event from pending child 316 (117f)
361.125876   [threads] wait_1: Ignored signal 17 for LWP 316.
361.126304   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.126691   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.126935   [threads] resume_one_lwp_throw: Resuming lwp 316 (continue, signal 17, stop not expected)
361.127442   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.316
361.127811 [threads] wait_1: exit
361.128062 [threads] wait_1: enter
361.128319   [threads] wait_1: [<all threads>]
361.128662   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.129038   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.129519   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.129939   [threads] wait_for_event_filtered: Got a pending child 410
361.130247   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
361.130580   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3025.3025.0
361.130885   [threads] wait_1: Hit a non-gdbserver trap event.
361.131462   [threads] stop_all_lwps: enter
361.131666     [threads] stop_all_lwps: stop, except=none
361.131907     [threads] send_sigstop: Sending sigstop to lwp 316
sigchld_handler
361.132422     [threads] wait_for_sigstop: pulling events
361.132869     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 316, ERRNO-OK
361.133098     [threads] wait_for_event_filtered: waitpid 316 received SIGSTOP - Stopped (signal) (stopped)
361.133487     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.133766     [threads] get_pc: pc is 0x4e97c214
361.134023     [threads] filter_event: Expected stop.
361.134371     [threads] filter_event: SIGSTOP caught for LWP 316.316 while stopping threads.
361.134705     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
361.135582     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
361.136222     [threads] operator(): leader_pid=3025, leader_lp!=NULL=1, num_lwps=1, zombie=0
361.136586     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
361.136906     [threads] stop_all_lwps: setting stopping_threads back to !stopping
361.137158   [threads] stop_all_lwps: exit
361.137645   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
361.137909   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
361.138188   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
361.138465   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
361.138722   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
361.138991   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
361.139260   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
361.139519   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
361.139787   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
361.140123   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
361.140390   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
361.140825   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
361.141089   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
361.141362   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
361.141626   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
361.141911   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
361.142170   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
361.142439   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
361.142714   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
361.142970   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
361.143310   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
361.143590   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
361.143958   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
361.144316   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
361.144585   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
361.144859   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
361.145187   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
361.145524   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
361.145788   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
361.146059   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
361.146464   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
361.146742   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
361.147013   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
361.147352   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
361.147717   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
361.148005   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
361.148275   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
361.148532   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
361.148946   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
361.149222   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
361.149476   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
361.149806   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
361.150216   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
361.150512   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
361.150769   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
361.151150   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
361.151416   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
361.151687   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
361.152077   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
361.152339   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
361.152610   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
361.152945   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
361.153218   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
361.153486   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
361.153741   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
361.154010   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
361.154282   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
361.154772   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
361.155063   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
361.155336   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
361.155595   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
361.155967   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
361.156250   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
361.156520   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
361.156775   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
361.157041   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
361.157314   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
361.157712   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
361.157988   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
361.158247   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
361.158635   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
361.158895   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
361.159278   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
361.159564   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3025 needs to move out of the jump pad... no
361.159827   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
361.160239   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
361.160792   [threads] wait_1: ret = LWP 316.410, status->kind = VFORKED, child_ptid = 3025.3025.0
361.161040 [threads] wait_1: exit
361.161401 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:5
361.163358 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.163644 [threads] handle_serial_event: handling possible serial event
361.163951 [threads] write_memory: Writing 0023 to 0x0045b444 in process 316
361.165116 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.165378 [threads] handle_serial_event: handling possible serial event
361.165662 [threads] write_memory: Writing 7047 to 0x4e90bb30 in process 316
361.167039 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.167608 [threads] handle_serial_event: handling possible serial event
361.167894 [threads] write_memory: Writing 38b5 to 0x4e98a7d8 in process 316
361.169183 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.169437 [threads] handle_serial_event: handling possible serial event
361.170194 [threads] write_memory: Writing 08b5 to 0x4ea6e998 in process 316
361.171635 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.171895 [threads] handle_serial_event: handling possible serial event
Detaching from process 3025
361.172575 [threads] stop_tracing: Tracing is already off, ignoring
361.172847 [threads] stop_all_lwps: enter
361.173369   [threads] stop_all_lwps: stop, except=none
361.173728   [threads] wait_for_sigstop: pulling events
361.174365   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
361.175445   [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
361.177034   [threads] operator(): leader_pid=3025, leader_lp!=NULL=1, num_lwps=1, zombie=0
361.177968   [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
361.178523   [threads] stop_all_lwps: setting stopping_threads back to !stopping
361.178765 [threads] stop_all_lwps: exit
361.179350 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
361.179881 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
361.180225 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
361.180496 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
361.180860 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
361.181136 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
361.181395 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
361.181670 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
361.181942 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
361.182305 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
361.182688 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
361.182962 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
361.183219 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
361.183696 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
361.184045 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
361.184301 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
361.184580 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
361.185036 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
361.185414 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
361.185700 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
361.185972 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
361.186391 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
361.186678 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
361.186938 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
361.187206 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
361.187575 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
361.187854 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
361.188219 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
361.188614 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
361.188892 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
361.189167 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
361.189437 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
361.189858 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
361.190205 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
361.190451 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
361.190729 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
361.191000 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
361.191253 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
361.191543 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
361.192070 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
361.192331 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
361.192601 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
361.192875 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
361.193144 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
361.193523 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
361.193800 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
361.194077 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
361.194413 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
361.194673 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
361.194949 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
361.195221 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
361.195489 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
361.195811 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
361.196085 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
361.196355 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
361.196726 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
361.197011 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
361.197285 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
361.197552 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
361.197803 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
361.198078 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
361.198345 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
361.198600 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
361.198998 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
361.199262 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
361.199668 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
361.200268 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
361.200595 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
361.200933 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
361.201216 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
361.201494 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
361.201764 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
361.202101 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
361.202366 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
361.202644 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3025 needs to move out of the jump pad... no
361.202912 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
361.203168 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
361.203799 [threads] detach_one_lwp: PTRACE_DETACH (LWP 3025.3025, Unknown signal 0, 0) (OK)
361.204044 [threads] delete_lwp: deleting 3025
361.204855 [threads] unstop_all_lwps: enter
361.205218   [threads] unstop_all_lwps: except=nullptr
361.205476   [threads] proceed_one_lwp: lwp 316
361.205724   [threads] proceed_one_lwp:    client wants LWP to remain 316 stopped
361.206008   [threads] proceed_one_lwp: lwp 349
361.206270   [threads] proceed_one_lwp:    client wants LWP to remain 349 stopped
361.206691   [threads] proceed_one_lwp: lwp 350
361.206940   [threads] proceed_one_lwp:    client wants LWP to remain 350 stopped
361.207275   [threads] proceed_one_lwp: lwp 351
361.207507   [threads] proceed_one_lwp:    client wants LWP to remain 351 stopped
361.207738   [threads] proceed_one_lwp: lwp 352
361.207960   [threads] proceed_one_lwp:    client wants LWP to remain 352 stopped
361.208188   [threads] proceed_one_lwp: lwp 357
361.208565   [threads] proceed_one_lwp:    client wants LWP to remain 357 stopped
361.208789   [threads] proceed_one_lwp: lwp 358
361.209003   [threads] proceed_one_lwp:    client wants LWP to remain 358 stopped
361.209224   [threads] proceed_one_lwp: lwp 359
361.209480   [threads] proceed_one_lwp:    client wants LWP to remain 359 stopped
361.209848   [threads] proceed_one_lwp: lwp 360
361.210246   [threads] proceed_one_lwp:    client wants LWP to remain 360 stopped
361.210565   [threads] proceed_one_lwp: lwp 361
361.210795   [threads] proceed_one_lwp:    client wants LWP to remain 361 stopped
361.211142   [threads] proceed_one_lwp: lwp 364
361.211444   [threads] proceed_one_lwp:    client wants LWP to remain 364 stopped
361.211771   [threads] proceed_one_lwp: lwp 365
361.212001   [threads] proceed_one_lwp:    client wants LWP to remain 365 stopped
361.212269   [threads] proceed_one_lwp: lwp 366
361.212492   [threads] proceed_one_lwp:    client wants LWP to remain 366 stopped
361.212732   [threads] proceed_one_lwp: lwp 367
361.212967   [threads] proceed_one_lwp:    client wants LWP to remain 367 stopped
361.213204   [threads] proceed_one_lwp: lwp 368
361.213466   [threads] proceed_one_lwp:    client wants LWP to remain 368 stopped
361.213703   [threads] proceed_one_lwp: lwp 369
361.213927   [threads] proceed_one_lwp:    client wants LWP to remain 369 stopped
361.214147   [threads] proceed_one_lwp: lwp 370
361.214366   [threads] proceed_one_lwp:    client wants LWP to remain 370 stopped
361.214592   [threads] proceed_one_lwp: lwp 371
361.214829   [threads] proceed_one_lwp:    client wants LWP to remain 371 stopped
361.215056   [threads] proceed_one_lwp: lwp 372
361.215270   [threads] proceed_one_lwp:    client wants LWP to remain 372 stopped
361.215496   [threads] proceed_one_lwp: lwp 373
361.215711   [threads] proceed_one_lwp:    client wants LWP to remain 373 stopped
361.215930   [threads] proceed_one_lwp: lwp 374
361.216141   [threads] proceed_one_lwp:    client wants LWP to remain 374 stopped
361.216357   [threads] proceed_one_lwp: lwp 375
361.216570   [threads] proceed_one_lwp:    client wants LWP to remain 375 stopped
361.216788   [threads] proceed_one_lwp: lwp 376
361.217008   [threads] proceed_one_lwp:    client wants LWP to remain 376 stopped
361.217226   [threads] proceed_one_lwp: lwp 377
361.217440   [threads] proceed_one_lwp:    client wants LWP to remain 377 stopped
361.217657   [threads] proceed_one_lwp: lwp 378
361.217870   [threads] proceed_one_lwp:    client wants LWP to remain 378 stopped
361.218095   [threads] proceed_one_lwp: lwp 379
361.218314   [threads] proceed_one_lwp:    client wants LWP to remain 379 stopped
361.218542   [threads] proceed_one_lwp: lwp 380
361.218766   [threads] proceed_one_lwp:    client wants LWP to remain 380 stopped
361.219018   [threads] proceed_one_lwp: lwp 381
361.219251   [threads] proceed_one_lwp:    client wants LWP to remain 381 stopped
361.219502   [threads] proceed_one_lwp: lwp 382
361.219752   [threads] proceed_one_lwp:    client wants LWP to remain 382 stopped
361.219993   [threads] proceed_one_lwp: lwp 383
361.220317   [threads] proceed_one_lwp:    client wants LWP to remain 383 stopped
361.220549   [threads] proceed_one_lwp: lwp 384
361.220776   [threads] proceed_one_lwp:    client wants LWP to remain 384 stopped
361.220989   [threads] proceed_one_lwp: lwp 385
361.221200   [threads] proceed_one_lwp:    client wants LWP to remain 385 stopped
361.221411   [threads] proceed_one_lwp: lwp 386
361.221617   [threads] proceed_one_lwp:    client wants LWP to remain 386 stopped
361.221858   [threads] proceed_one_lwp: lwp 387
361.233262   [threads] proceed_one_lwp:    client wants LWP to remain 387 stopped
361.233576   [threads] proceed_one_lwp: lwp 388
361.233841   [threads] proceed_one_lwp:    client wants LWP to remain 388 stopped
361.234108   [threads] proceed_one_lwp: lwp 389
361.234347   [threads] proceed_one_lwp:    client wants LWP to remain 389 stopped
361.234606   [threads] proceed_one_lwp: lwp 390
361.234859   [threads] proceed_one_lwp:    client wants LWP to remain 390 stopped
361.235116   [threads] proceed_one_lwp: lwp 391
361.235351   [threads] proceed_one_lwp:    client wants LWP to remain 391 stopped
361.235607   [threads] proceed_one_lwp: lwp 392
361.235845   [threads] proceed_one_lwp:    client wants LWP to remain 392 stopped
361.236260   [threads] proceed_one_lwp: lwp 393
361.236482   [threads] proceed_one_lwp:    client wants LWP to remain 393 stopped
361.237044   [threads] proceed_one_lwp: lwp 394
361.237269   [threads] proceed_one_lwp:    client wants LWP to remain 394 stopped
361.237491   [threads] proceed_one_lwp: lwp 395
361.237707   [threads] proceed_one_lwp:    client wants LWP to remain 395 stopped
361.238137   [threads] proceed_one_lwp: lwp 396
361.238387   [threads] proceed_one_lwp:    client wants LWP to remain 396 stopped
361.238652   [threads] proceed_one_lwp: lwp 397
361.238906   [threads] proceed_one_lwp:    client wants LWP to remain 397 stopped
361.239152   [threads] proceed_one_lwp: lwp 398
361.239402   [threads] proceed_one_lwp:    client wants LWP to remain 398 stopped
361.239658   [threads] proceed_one_lwp: lwp 399
361.239894   [threads] proceed_one_lwp:    client wants LWP to remain 399 stopped
361.240410   [threads] proceed_one_lwp: lwp 400
361.240658   [threads] proceed_one_lwp:    client wants LWP to remain 400 stopped
361.241139   [threads] proceed_one_lwp: lwp 401
361.241405   [threads] proceed_one_lwp:    client wants LWP to remain 401 stopped
361.241665   [threads] proceed_one_lwp: lwp 403
361.241900   [threads] proceed_one_lwp:    client wants LWP to remain 403 stopped
361.242281   [threads] proceed_one_lwp: lwp 404
361.242522   [threads] proceed_one_lwp:    client wants LWP to remain 404 stopped
361.242780   [threads] proceed_one_lwp: lwp 405
361.243112   [threads] proceed_one_lwp:    client wants LWP to remain 405 stopped
361.243389   [threads] proceed_one_lwp: lwp 406
361.243709   [threads] proceed_one_lwp:    client wants LWP to remain 406 stopped
361.243967   [threads] proceed_one_lwp: lwp 407
361.244206   [threads] proceed_one_lwp:    client wants LWP to remain 407 stopped
361.244563   [threads] proceed_one_lwp: lwp 408
361.244817   [threads] proceed_one_lwp:    client wants LWP to remain 408 stopped
361.245076   [threads] proceed_one_lwp: lwp 409
361.245384   [threads] proceed_one_lwp:    client wants LWP to remain 409 stopped
361.245639   [threads] proceed_one_lwp: lwp 410
361.245891   [threads] proceed_one_lwp:    client wants LWP to remain 410 stopped
361.246132   [threads] proceed_one_lwp: lwp 411
361.246444   [threads] proceed_one_lwp:    client wants LWP to remain 411 stopped
361.246704   [threads] proceed_one_lwp: lwp 412
361.246942   [threads] proceed_one_lwp:    client wants LWP to remain 412 stopped
361.247202   [threads] proceed_one_lwp: lwp 414
361.247556   [threads] proceed_one_lwp:    client wants LWP to remain 414 stopped
361.247817   [threads] proceed_one_lwp: lwp 433
361.248068   [threads] proceed_one_lwp:    client wants LWP to remain 433 stopped
361.248311   [threads] proceed_one_lwp: lwp 436
361.248567   [threads] proceed_one_lwp:    client wants LWP to remain 436 stopped
361.248905   [threads] proceed_one_lwp: lwp 437
361.249286   [threads] proceed_one_lwp:    client wants LWP to remain 437 stopped
361.249555   [threads] proceed_one_lwp: lwp 483
361.249793   [threads] proceed_one_lwp:    client wants LWP to remain 483 stopped
361.250219   [threads] proceed_one_lwp: lwp 484
361.250495   [threads] proceed_one_lwp:    client wants LWP to remain 484 stopped
361.250855   [threads] proceed_one_lwp: lwp 493
361.251205   [threads] proceed_one_lwp:    client wants LWP to remain 493 stopped
361.251468   [threads] proceed_one_lwp: lwp 508
361.251722   [threads] proceed_one_lwp:    client wants LWP to remain 508 stopped
361.251964   [threads] proceed_one_lwp: lwp 613
361.252310   [threads] proceed_one_lwp:    client wants LWP to remain 613 stopped
361.252573   [threads] proceed_one_lwp: lwp 624
361.252828   [threads] proceed_one_lwp:    client wants LWP to remain 624 stopped
361.253167   [threads] proceed_one_lwp: lwp 655
361.253490   [threads] proceed_one_lwp:    client wants LWP to remain 655 stopped
361.253752   [threads] proceed_one_lwp: lwp 660
361.253988   [threads] proceed_one_lwp:    client wants LWP to remain 660 stopped
361.254244   [threads] proceed_one_lwp: lwp 661
361.254581   [threads] proceed_one_lwp:    client wants LWP to remain 661 stopped
361.254844   [threads] proceed_one_lwp: lwp 1074
361.255091   [threads] proceed_one_lwp:    client wants LWP to remain 1074 stopped
361.255330   [threads] proceed_one_lwp: lwp 1118
361.255585   [threads] proceed_one_lwp:    client wants LWP to remain 1118 stopped
361.256086   [threads] proceed_one_lwp: lwp 1293
361.256327   [threads] proceed_one_lwp:    client wants LWP to remain 1293 stopped
361.256580   [threads] proceed_one_lwp: lwp 3027
361.256924   [threads] proceed_one_lwp:    client wants LWP to remain 3027 stopped
361.257182   [threads] proceed_one_lwp: lwp 3028
361.257418   [threads] proceed_one_lwp:    client wants LWP to remain 3028 stopped
361.257688 [threads] unstop_all_lwps: exit
361.258706 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.258966 [threads] handle_serial_event: handling possible serial event
361.259593 [threads] resume: enter
361.260118   [threads] thread_needs_step_over: Need step over [LWP 316]? Ignoring, should remain stopped
361.260424   [threads] thread_needs_step_over: Need step over [LWP 349]? Ignoring, should remain stopped
361.260679   [threads] thread_needs_step_over: Need step over [LWP 350]? Ignoring, should remain stopped
361.260943   [threads] thread_needs_step_over: Need step over [LWP 351]? Ignoring, should remain stopped
361.261213   [threads] thread_needs_step_over: Need step over [LWP 352]? Ignoring, should remain stopped
361.261462   [threads] thread_needs_step_over: Need step over [LWP 357]? Ignoring, should remain stopped
361.261724   [threads] thread_needs_step_over: Need step over [LWP 358]? Ignoring, should remain stopped
361.261984   [threads] thread_needs_step_over: Need step over [LWP 359]? Ignoring, should remain stopped
361.262234   [threads] thread_needs_step_over: Need step over [LWP 360]? Ignoring, should remain stopped
361.262493   [threads] thread_needs_step_over: Need step over [LWP 361]? Ignoring, should remain stopped
361.262757   [threads] thread_needs_step_over: Need step over [LWP 364]? Ignoring, should remain stopped
361.263004   [threads] thread_needs_step_over: Need step over [LWP 365]? Ignoring, should remain stopped
361.263269   [threads] thread_needs_step_over: Need step over [LWP 366]? Ignoring, should remain stopped
361.263529   [threads] thread_needs_step_over: Need step over [LWP 367]? Ignoring, should remain stopped
361.263778   [threads] thread_needs_step_over: Need step over [LWP 368]? Ignoring, should remain stopped
361.264041   [threads] thread_needs_step_over: Need step over [LWP 369]? Ignoring, should remain stopped
361.264312   [threads] thread_needs_step_over: Need step over [LWP 370]? Ignoring, should remain stopped
361.264678   [threads] thread_needs_step_over: Need step over [LWP 371]? Ignoring, should remain stopped
361.264933   [threads] thread_needs_step_over: Need step over [LWP 372]? Ignoring, should remain stopped
361.265191   [threads] thread_needs_step_over: Need step over [LWP 373]? Ignoring, should remain stopped
361.265454   [threads] thread_needs_step_over: Need step over [LWP 374]? Ignoring, should remain stopped
361.265717   [threads] thread_needs_step_over: Need step over [LWP 375]? Ignoring, should remain stopped
361.266112   [threads] thread_needs_step_over: Need step over [LWP 376]? Ignoring, should remain stopped
361.266387   [threads] thread_needs_step_over: Need step over [LWP 377]? Ignoring, should remain stopped
361.266639   [threads] thread_needs_step_over: Need step over [LWP 378]? Ignoring, should remain stopped
361.266903   [threads] thread_needs_step_over: Need step over [LWP 379]? Ignoring, should remain stopped
361.267166   [threads] thread_needs_step_over: Need step over [LWP 380]? Ignoring, should remain stopped
361.267448   [threads] thread_needs_step_over: Need step over [LWP 381]? Ignoring, should remain stopped
361.267797   [threads] thread_needs_step_over: Need step over [LWP 382]? Ignoring, should remain stopped
361.268065   [threads] thread_needs_step_over: Need step over [LWP 383]? Ignoring, should remain stopped
361.268319   [threads] thread_needs_step_over: Need step over [LWP 384]? Ignoring, should remain stopped
361.268584   [threads] thread_needs_step_over: Need step over [LWP 385]? Ignoring, should remain stopped
361.268949   [threads] thread_needs_step_over: Need step over [LWP 386]? Ignoring, should remain stopped
361.269219   [threads] thread_needs_step_over: Need step over [LWP 387]? Ignoring, should remain stopped
361.269560   [threads] thread_needs_step_over: Need step over [LWP 388]? Ignoring, should remain stopped
361.269963   [threads] thread_needs_step_over: Need step over [LWP 389]? Ignoring, should remain stopped
361.270337   [threads] thread_needs_step_over: Need step over [LWP 390]? Ignoring, should remain stopped
361.270613   [threads] thread_needs_step_over: Need step over [LWP 391]? Ignoring, should remain stopped
361.271220   [threads] thread_needs_step_over: Need step over [LWP 392]? Ignoring, should remain stopped
361.271518   [threads] thread_needs_step_over: Need step over [LWP 393]? Ignoring, should remain stopped
361.271782   [threads] thread_needs_step_over: Need step over [LWP 394]? Ignoring, should remain stopped
361.272105   [threads] thread_needs_step_over: Need step over [LWP 395]? Ignoring, should remain stopped
361.272328   [threads] thread_needs_step_over: Need step over [LWP 396]? Ignoring, should remain stopped
361.272650   [threads] thread_needs_step_over: Need step over [LWP 397]? Ignoring, should remain stopped
361.272954   [threads] thread_needs_step_over: Need step over [LWP 398]? Ignoring, should remain stopped
361.273172   [threads] thread_needs_step_over: Need step over [LWP 399]? Ignoring, should remain stopped
361.273394   [threads] thread_needs_step_over: Need step over [LWP 400]? Ignoring, should remain stopped
361.273615   [threads] thread_needs_step_over: Need step over [LWP 401]? Ignoring, should remain stopped
361.273831   [threads] thread_needs_step_over: Need step over [LWP 403]? Ignoring, should remain stopped
361.274053   [threads] thread_needs_step_over: Need step over [LWP 404]? Ignoring, should remain stopped
361.274273   [threads] thread_needs_step_over: Need step over [LWP 405]? Ignoring, should remain stopped
361.274492   [threads] thread_needs_step_over: Need step over [LWP 406]? Ignoring, should remain stopped
361.274717   [threads] thread_needs_step_over: Need step over [LWP 407]? Ignoring, should remain stopped
361.274936   [threads] thread_needs_step_over: Need step over [LWP 408]? Ignoring, should remain stopped
361.275155   [threads] thread_needs_step_over: Need step over [LWP 409]? Ignoring, should remain stopped
361.275395   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.275615   [threads] get_pc: pc is 0x4e9fb3e8
361.275943   [threads] thread_needs_step_over: Need step over [LWP 410]? No, no breakpoint found at 0x4e9fb3e8
361.276181   [threads] thread_needs_step_over: Need step over [LWP 411]? Ignoring, should remain stopped
361.276449   [threads] thread_needs_step_over: Need step over [LWP 412]? Ignoring, should remain stopped
361.276678   [threads] thread_needs_step_over: Need step over [LWP 414]? Ignoring, should remain stopped
361.277021   [threads] thread_needs_step_over: Need step over [LWP 433]? Ignoring, should remain stopped
361.277390   [threads] thread_needs_step_over: Need step over [LWP 436]? Ignoring, should remain stopped
361.277658   [threads] thread_needs_step_over: Need step over [LWP 437]? Ignoring, should remain stopped
361.277911   [threads] thread_needs_step_over: Need step over [LWP 483]? Ignoring, should remain stopped
361.278177   [threads] thread_needs_step_over: Need step over [LWP 484]? Ignoring, should remain stopped
361.278437   [threads] thread_needs_step_over: Need step over [LWP 493]? Ignoring, should remain stopped
361.278956   [threads] thread_needs_step_over: Need step over [LWP 508]? Ignoring, should remain stopped
361.279224   [threads] thread_needs_step_over: Need step over [LWP 613]? Ignoring, should remain stopped
361.279473   [threads] thread_needs_step_over: Need step over [LWP 624]? Ignoring, should remain stopped
361.279739   [threads] thread_needs_step_over: Need step over [LWP 655]? Ignoring, should remain stopped
361.280156   [threads] thread_needs_step_over: Need step over [LWP 660]? Ignoring, should remain stopped
361.280435   [threads] thread_needs_step_over: Need step over [LWP 661]? Ignoring, should remain stopped
361.280702   [threads] thread_needs_step_over: Need step over [LWP 1074]? Ignoring, should remain stopped
361.281088   [threads] thread_needs_step_over: Need step over [LWP 1118]? Ignoring, should remain stopped
361.281350   [threads] thread_needs_step_over: Need step over [LWP 1293]? Ignoring, should remain stopped
361.281646   [threads] thread_needs_step_over: Need step over [LWP 3027]? Ignoring, should remain stopped
361.282123   [threads] thread_needs_step_over: Need step over [LWP 3028]? Ignoring, should remain stopped
361.282372   [threads] resume: Resuming, no pending status or step over needed
361.282648   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
361.283107   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4624
361.283390   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
361.283660   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4624
361.283914   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
361.284397   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4624
361.284676   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
361.284945   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4624
361.285496   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
361.285754   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4624
361.286095   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
361.286366   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4624
361.286632   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
361.286890   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4624
361.287230   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
361.287598   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4624
361.287864   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
361.288121   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4624
361.288390   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
361.288660   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4624
361.288927   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
361.289183   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4624
361.289453   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
361.289723   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4624
361.289987   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
361.290321   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4624
361.290597   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
361.290858   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4624
361.291121   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
361.291391   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4624
361.291645   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
361.292118   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4624
361.292463   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
361.292822   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4624
361.293090   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
361.293356   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4624
361.293607   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
361.293990   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4624
361.294271   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
361.294550   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4624
361.294801   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
361.295070   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4624
361.295463   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
361.295750   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4624
361.296016   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
361.296391   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4624
361.296764   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
361.297044   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4624
361.297310   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
361.297717   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4624
361.297985   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
361.298242   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4624
361.298508   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
361.299012   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4624
361.299269   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
361.299540   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4624
361.299829   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
361.300257   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4624
361.300534   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
361.300795   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4624
361.301179   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
361.301520   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4624
361.301771   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
361.302048   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4624
361.302314   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
361.302582   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4624
361.302831   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
361.303105   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4624
361.303370   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
361.303736   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4624
361.304009   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
361.304279   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4624
361.304629   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
361.304903   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4624
361.305330   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
361.305587   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4624
361.305852   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
361.310579   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4624
361.311149   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
361.311441   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4624
361.312030   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
361.312290   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4624
361.312879   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
361.313425   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4624
361.313699   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
361.314327   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4624
361.314592   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
361.315198   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4624
361.315452   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
361.316063   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4624
361.316625   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
361.316917   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4624
361.317574   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
361.317847   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4624
361.318442   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
361.318707   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4624
361.319520   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
361.319780   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4624
361.320529   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
361.320842   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4624
361.321092   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
361.321713   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4624
361.322291   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
361.322578   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4624
361.323195   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
361.323461   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4624
361.324066   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
361.324322   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4624
361.324931   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
361.325186   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4624
361.325746   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
361.325999   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.330748   [threads] resume_one_thread: resuming LWP 410
361.330987   [threads] proceed_one_lwp: lwp 410
361.331245   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.331492   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
361.331726   [threads] resume_one_lwp_throw: Resuming lwp 410 (continue, signal 0, stop not expected)
361.332113 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.410
361.332540   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
361.332806   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4624
361.333057   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
361.333313   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4624
361.333562   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
361.333810   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4624
361.334051   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
361.334297   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4624
361.334606   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
361.334857   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4624
361.335099   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
361.335346   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4624
361.335589   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
361.335835   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4624
361.336074   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
361.336320   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4624
361.336563   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
361.336809   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4624
361.337050   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
361.337293   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4624
361.337537   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
361.337784   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4624
361.338025   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
361.338270   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4624
361.338509   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
361.338756   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4624
361.339000   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
361.339244   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4624
361.339485   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
361.339734   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4624
361.339975   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
361.340281   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4624
361.340527   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
361.340781   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4624
361.341022   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
361.341269   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4624
361.341512   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 0
361.341760   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4624
361.342001   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 0
361.342244   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4624
361.342476 [threads] resume: exit
361.342703 [threads] wait_1: enter
361.342942   [threads] wait_1: [<all threads>]
361.343442   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 410, ERRNO-OK
361.343750   [threads] wait_for_event_filtered: waitpid 410 received SIGTRAP - Trace/breakpoint trap (stopped)
361.344161   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.344410   [threads] get_pc: pc is 0x4e9fb3e8
361.344660   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.344895   [threads] get_pc: pc is 0x4e9fb3e8
361.345283   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
361.345699   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.346056   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.346345   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORK_DONE
361.346602   [threads] wait_1: Hit a non-gdbserver trap event.
361.346947   [threads] stop_all_lwps: enter
361.347183     [threads] stop_all_lwps: stop, except=none
361.347457     [threads] wait_for_sigstop: pulling events
361.347769     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
361.348519     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
361.348878     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
361.349184     [threads] stop_all_lwps: setting stopping_threads back to !stopping
361.349427   [threads] stop_all_lwps: exit
361.349833   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
361.350201   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
361.350456   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
361.350705   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
361.350956   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
361.351206   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
361.351449   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
361.351697   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
361.351944   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
361.352187   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
361.352433   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
361.352692   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
361.352954   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
361.353205   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
361.353465   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
361.353715   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
361.353964   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
361.354208   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
361.354459   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
361.354701   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
361.354947   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
361.355192   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
361.355444   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
361.355690   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
361.355936   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
361.356179   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
361.356423   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
361.356717   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
361.356976   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
361.357220   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
361.357468   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
361.357714   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
361.357959   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
361.358204   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
361.358450   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
361.358697   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
361.358944   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
361.359189   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
361.359433   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
361.359681   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
361.359929   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
361.360235   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
361.360485   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
361.360737   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
361.360982   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
361.361230   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
361.361476   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
361.361726   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
361.361976   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
361.362222   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
361.362467   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
361.362714   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
361.362959   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
361.363201   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
361.363443   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
361.363687   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
361.363936   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
361.364181   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
361.364426   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
361.364670   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
361.364919   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
361.365164   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
361.365410   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
361.365664   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
361.365921   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
361.366170   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
361.366419   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
361.366666   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
361.366915   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
361.367162   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
361.367406   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
361.367709   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
361.367971   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
361.368225   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
361.368472   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
361.368716   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
361.369134   [threads] wait_1: ret = LWP 316.410, status->kind = VFORK_DONE
361.369392 [threads] wait_1: exit
361.369683 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:7
361.371312 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.371599 [threads] handle_serial_event: handling possible serial event
361.372566 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.372831 [threads] handle_serial_event: handling possible serial event
361.373791 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.374050 [threads] handle_serial_event: handling possible serial event
361.375014 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.375276 [threads] handle_serial_event: handling possible serial event
361.376198 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.376465 [threads] handle_serial_event: handling possible serial event
361.376837 [threads] write_memory: Writing 01de to 0x0045b444 in process 316
361.377737 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.378003 [threads] handle_serial_event: handling possible serial event
361.378822 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.379085 [threads] handle_serial_event: handling possible serial event
361.379460 [threads] write_memory: Writing 01de to 0x4e90bb30 in process 316
361.380353 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.385090 [threads] handle_serial_event: handling possible serial event
361.386009 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.386292 [threads] handle_serial_event: handling possible serial event
361.386664 [threads] write_memory: Writing 01de to 0x4e98a7d8 in process 316
361.387549 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.387819 [threads] handle_serial_event: handling possible serial event
361.388655 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.388930 [threads] handle_serial_event: handling possible serial event
361.389292 [threads] write_memory: Writing 01de to 0x4ea6e998 in process 316
361.390156 [event-loop] handle_file_event: invoking fd file handler `remote-net`
361.390435 [threads] handle_serial_event: handling possible serial event
361.390938 [threads] resume: enter
361.391319   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
361.391588   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
361.392089   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.392354   [threads] get_pc: pc is 0x4e97c214
361.392603   [threads] thread_needs_step_over: Need step over [LWP 316]? No, no breakpoint found at 0x4e97c214
361.392868   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.393111   [threads] get_pc: pc is 0x4e97c214
361.393356   [threads] thread_needs_step_over: Need step over [LWP 349]? No, no breakpoint found at 0x4e97c214
361.393616   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.393915   [threads] get_pc: pc is 0x4e97c214
361.394159   [threads] thread_needs_step_over: Need step over [LWP 350]? No, no breakpoint found at 0x4e97c214
361.394415   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.394650   [threads] get_pc: pc is 0x4e97c216
361.394891   [threads] thread_needs_step_over: Need step over [LWP 351]? No, no breakpoint found at 0x4e97c216
361.395149   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.395386   [threads] get_pc: pc is 0x4e97c216
361.395628   [threads] thread_needs_step_over: Need step over [LWP 352]? No, no breakpoint found at 0x4e97c216
361.395890   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.396125   [threads] get_pc: pc is 0x4e97c216
361.396366   [threads] thread_needs_step_over: Need step over [LWP 357]? No, no breakpoint found at 0x4e97c216
361.396617   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.396850   [threads] get_pc: pc is 0x4e97c216
361.397084   [threads] thread_needs_step_over: Need step over [LWP 358]? No, no breakpoint found at 0x4e97c216
361.397344   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.397577   [threads] get_pc: pc is 0x4e97c216
361.397811   [threads] thread_needs_step_over: Need step over [LWP 359]? No, no breakpoint found at 0x4e97c216
361.398064   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.398296   [threads] get_pc: pc is 0x4e97c216
361.398541   [threads] thread_needs_step_over: Need step over [LWP 360]? No, no breakpoint found at 0x4e97c216
361.398794   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.399024   [threads] get_pc: pc is 0x4e97c214
361.399258   [threads] thread_needs_step_over: Need step over [LWP 361]? No, no breakpoint found at 0x4e97c214
361.399516   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.399748   [threads] get_pc: pc is 0x4e97c216
361.399987   [threads] thread_needs_step_over: Need step over [LWP 364]? No, no breakpoint found at 0x4e97c216
361.400368   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.400607   [threads] get_pc: pc is 0x4e97c216
361.400845   [threads] thread_needs_step_over: Need step over [LWP 365]? No, no breakpoint found at 0x4e97c216
361.401101   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.401331   [threads] get_pc: pc is 0x4e97c216
361.401571   [threads] thread_needs_step_over: Need step over [LWP 366]? No, no breakpoint found at 0x4e97c216
361.401822   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.402052   [threads] get_pc: pc is 0x4e97c214
361.402288   [threads] thread_needs_step_over: Need step over [LWP 367]? No, no breakpoint found at 0x4e97c214
361.402539   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.402778   [threads] get_pc: pc is 0x4eb53d34
361.403014   [threads] thread_needs_step_over: Need step over [LWP 368]? No, no breakpoint found at 0x4eb53d34
361.403267   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.403498   [threads] get_pc: pc is 0x4e97c214
361.403738   [threads] thread_needs_step_over: Need step over [LWP 369]? No, no breakpoint found at 0x4e97c214
361.404047   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.404283   [threads] get_pc: pc is 0x4e97c216
361.404522   [threads] thread_needs_step_over: Need step over [LWP 370]? No, no breakpoint found at 0x4e97c216
361.404780   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.405010   [threads] get_pc: pc is 0x4e97c214
361.405248   [threads] thread_needs_step_over: Need step over [LWP 371]? No, no breakpoint found at 0x4e97c214
361.405504   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.405738   [threads] get_pc: pc is 0x4e97c216
361.405978   [threads] thread_needs_step_over: Need step over [LWP 372]? No, no breakpoint found at 0x4e97c216
361.406233   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.406463   [threads] get_pc: pc is 0x4e97c216
361.406698   [threads] thread_needs_step_over: Need step over [LWP 373]? No, no breakpoint found at 0x4e97c216
361.406957   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.407186   [threads] get_pc: pc is 0x4e97c214
361.407424   [threads] thread_needs_step_over: Need step over [LWP 374]? No, no breakpoint found at 0x4e97c214
361.407677   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.407911   [threads] get_pc: pc is 0x4e97c216
361.408145   [threads] thread_needs_step_over: Need step over [LWP 375]? No, no breakpoint found at 0x4e97c216
361.408398   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.408629   [threads] get_pc: pc is 0x4e97c216
361.408869   [threads] thread_needs_step_over: Need step over [LWP 376]? No, no breakpoint found at 0x4e97c216
361.409125   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.409355   [threads] get_pc: pc is 0x4e97c216
361.409589   [threads] thread_needs_step_over: Need step over [LWP 377]? No, no breakpoint found at 0x4e97c216
361.409845   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.410136   [threads] get_pc: pc is 0x4e97c216
361.410384   [threads] thread_needs_step_over: Need step over [LWP 378]? No, no breakpoint found at 0x4e97c216
361.410640   [threads] linux_get_pc_32bit: stop pc is 0x45b460
361.410873   [threads] get_pc: pc is 0x45b460
361.411136   [threads] thread_needs_step_over: Need step over [LWP 379]? No, no breakpoint found at 0x45b460
361.411400   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.411630   [threads] get_pc: pc is 0x4e97c214
361.411867   [threads] thread_needs_step_over: Need step over [LWP 380]? No, no breakpoint found at 0x4e97c214
361.412136   [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
361.412371   [threads] get_pc: pc is 0x4e9f6646
361.412615   [threads] thread_needs_step_over: Need step over [LWP 381]? No, no breakpoint found at 0x4e9f6646
361.412877   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.413116   [threads] get_pc: pc is 0x4e97c216
361.413354   [threads] thread_needs_step_over: Need step over [LWP 382]? No, no breakpoint found at 0x4e97c216
361.413610   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.413841   [threads] get_pc: pc is 0x4e97c214
361.414077   [threads] thread_needs_step_over: Need step over [LWP 383]? No, no breakpoint found at 0x4e97c214
361.414328   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.414597   [threads] get_pc: pc is 0x4e97c216
361.414853   [threads] thread_needs_step_over: Need step over [LWP 384]? No, no breakpoint found at 0x4e97c216
361.415124   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.415366   [threads] get_pc: pc is 0x4e97c216
361.415605   [threads] thread_needs_step_over: Need step over [LWP 385]? No, no breakpoint found at 0x4e97c216
361.415863   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.416091   [threads] get_pc: pc is 0x4e97c216
361.416329   [threads] thread_needs_step_over: Need step over [LWP 386]? No, no breakpoint found at 0x4e97c216
361.416580   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.416810   [threads] get_pc: pc is 0x4e97c216
361.417043   [threads] thread_needs_step_over: Need step over [LWP 387]? No, no breakpoint found at 0x4e97c216
361.417298   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.417528   [threads] get_pc: pc is 0x4e97c216
361.417768   [threads] thread_needs_step_over: Need step over [LWP 388]? No, no breakpoint found at 0x4e97c216
361.418025   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.418254   [threads] get_pc: pc is 0x4e97c216
361.418495   [threads] thread_needs_step_over: Need step over [LWP 389]? No, no breakpoint found at 0x4e97c216
361.418748   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.418979   [threads] get_pc: pc is 0x4e97c216
361.419214   [threads] thread_needs_step_over: Need step over [LWP 390]? No, no breakpoint found at 0x4e97c216
361.419470   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.419699   [threads] get_pc: pc is 0x4e97c216
361.419938   [threads] thread_needs_step_over: Need step over [LWP 391]? No, no breakpoint found at 0x4e97c216
361.420290   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.420530   [threads] get_pc: pc is 0x4e97c216
361.420767   [threads] thread_needs_step_over: Need step over [LWP 392]? No, no breakpoint found at 0x4e97c216
361.421025   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.421261   [threads] get_pc: pc is 0x4eb53d34
361.421499   [threads] thread_needs_step_over: Need step over [LWP 393]? No, no breakpoint found at 0x4eb53d34
361.421754   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.421986   [threads] get_pc: pc is 0x4e97c216
361.422222   [threads] thread_needs_step_over: Need step over [LWP 394]? No, no breakpoint found at 0x4e97c216
361.422481   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.422710   [threads] get_pc: pc is 0x4e97c216
361.422945   [threads] thread_needs_step_over: Need step over [LWP 395]? No, no breakpoint found at 0x4e97c216
361.423197   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.423426   [threads] get_pc: pc is 0x4e9fb3e8
361.423664   [threads] thread_needs_step_over: Need step over [LWP 396]? No, no breakpoint found at 0x4e9fb3e8
361.423921   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.424154   [threads] get_pc: pc is 0x4e97c216
361.424398   [threads] thread_needs_step_over: Need step over [LWP 397]? No, no breakpoint found at 0x4e97c216
361.424661   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.424893   [threads] get_pc: pc is 0x4e97c216
361.425131   [threads] thread_needs_step_over: Need step over [LWP 398]? No, no breakpoint found at 0x4e97c216
361.425386   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.425669   [threads] get_pc: pc is 0x4eb53d34
361.425909   [threads] thread_needs_step_over: Need step over [LWP 399]? No, no breakpoint found at 0x4eb53d34
361.426164   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.426394   [threads] get_pc: pc is 0x4e97c214
361.426632   [threads] thread_needs_step_over: Need step over [LWP 400]? No, no breakpoint found at 0x4e97c214
361.426889   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.427123   [threads] get_pc: pc is 0x4e97c216
361.427358   [threads] thread_needs_step_over: Need step over [LWP 401]? No, no breakpoint found at 0x4e97c216
361.427613   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.427849   [threads] get_pc: pc is 0x4e97c216
361.428088   [threads] thread_needs_step_over: Need step over [LWP 403]? No, no breakpoint found at 0x4e97c216
361.428343   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.428571   [threads] get_pc: pc is 0x4e97c216
361.428808   [threads] thread_needs_step_over: Need step over [LWP 404]? No, no breakpoint found at 0x4e97c216
361.429062   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.429290   [threads] get_pc: pc is 0x4e97c216
361.429526   [threads] thread_needs_step_over: Need step over [LWP 405]? No, no breakpoint found at 0x4e97c216
361.429778   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.430051   [threads] get_pc: pc is 0x4e97c216
361.430302   [threads] thread_needs_step_over: Need step over [LWP 406]? No, no breakpoint found at 0x4e97c216
361.430560   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.430789   [threads] get_pc: pc is 0x4e97c214
361.431029   [threads] thread_needs_step_over: Need step over [LWP 407]? No, no breakpoint found at 0x4e97c214
361.431289   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.431532   [threads] get_pc: pc is 0x4e97c216
361.431773   [threads] thread_needs_step_over: Need step over [LWP 408]? No, no breakpoint found at 0x4e97c216
361.432032   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.432267   [threads] get_pc: pc is 0x4e97c216
361.432503   [threads] thread_needs_step_over: Need step over [LWP 409]? No, no breakpoint found at 0x4e97c216
361.432758   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.432995   [threads] get_pc: pc is 0x4e9fb3e8
361.433232   [threads] thread_needs_step_over: Need step over [LWP 410]? No, no breakpoint found at 0x4e9fb3e8
361.433490   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.433724   [threads] get_pc: pc is 0x4e97c214
361.433966   [threads] thread_needs_step_over: Need step over [LWP 411]? No, no breakpoint found at 0x4e97c214
361.434222   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.434452   [threads] get_pc: pc is 0x4e97c216
361.434687   [threads] thread_needs_step_over: Need step over [LWP 412]? No, no breakpoint found at 0x4e97c216
361.435637   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.435734   [threads] get_pc: pc is 0x4e97c216
361.435798   [threads] thread_needs_step_over: Need step over [LWP 414]? No, no breakpoint found at 0x4e97c216
361.435870   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.435924   [threads] get_pc: pc is 0x4e97c216
361.435981   [threads] thread_needs_step_over: Need step over [LWP 433]? No, no breakpoint found at 0x4e97c216
361.436049   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.436102   [threads] get_pc: pc is 0x4e97c214
361.436158   [threads] thread_needs_step_over: Need step over [LWP 436]? No, no breakpoint found at 0x4e97c214
361.436226   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.436280   [threads] get_pc: pc is 0x4e97c216
361.436335   [threads] thread_needs_step_over: Need step over [LWP 437]? No, no breakpoint found at 0x4e97c216
361.436403   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.436455   [threads] get_pc: pc is 0x4e97c216
361.436511   [threads] thread_needs_step_over: Need step over [LWP 483]? No, no breakpoint found at 0x4e97c216
361.436579   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.436631   [threads] get_pc: pc is 0x4e97c216
361.436859   [threads] thread_needs_step_over: Need step over [LWP 484]? No, no breakpoint found at 0x4e97c216
361.436936   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.436990   [threads] get_pc: pc is 0x4eb53d34
361.437047   [threads] thread_needs_step_over: Need step over [LWP 493]? No, no breakpoint found at 0x4eb53d34
361.437115   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.437169   [threads] get_pc: pc is 0x4e97c216
361.437226   [threads] thread_needs_step_over: Need step over [LWP 508]? No, no breakpoint found at 0x4e97c216
361.437294   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.437346   [threads] get_pc: pc is 0x4e97c216
361.437401   [threads] thread_needs_step_over: Need step over [LWP 613]? No, no breakpoint found at 0x4e97c216
361.437470   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.437521   [threads] get_pc: pc is 0x4e97c214
361.437577   [threads] thread_needs_step_over: Need step over [LWP 624]? No, no breakpoint found at 0x4e97c214
361.437644   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.437698   [threads] get_pc: pc is 0x4e97c214
361.437754   [threads] thread_needs_step_over: Need step over [LWP 655]? No, no breakpoint found at 0x4e97c214
361.437822   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.437873   [threads] get_pc: pc is 0x4e97c216
361.437929   [threads] thread_needs_step_over: Need step over [LWP 660]? No, no breakpoint found at 0x4e97c216
361.437996   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.438048   [threads] get_pc: pc is 0x4e97c216
361.438105   [threads] thread_needs_step_over: Need step over [LWP 661]? No, no breakpoint found at 0x4e97c216
361.438308   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.438366   [threads] get_pc: pc is 0x4e97c214
361.438423   [threads] thread_needs_step_over: Need step over [LWP 1074]? No, no breakpoint found at 0x4e97c214
361.438493   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.438547   [threads] get_pc: pc is 0x4e97c214
361.439490   [threads] thread_needs_step_over: Need step over [LWP 1118]? No, no breakpoint found at 0x4e97c214
361.441117   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.442520   [threads] get_pc: pc is 0x4e97c214
361.443802   [threads] thread_needs_step_over: Need step over [LWP 1293]? No, no breakpoint found at 0x4e97c214
361.444065   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.444775   [threads] get_pc: pc is 0x4e97c216
361.445005   [threads] thread_needs_step_over: Need step over [LWP 3027]? No, no breakpoint found at 0x4e97c216
361.445621   [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
361.445859   [threads] get_pc: pc is 0x4ea70c34
361.446450   [threads] thread_needs_step_over: Need step over [LWP 3028]? No, no breakpoint found at 0x4ea70c34
361.446963   [threads] resume: Resuming, no pending status or step over needed
361.447219   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
361.447785   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.448017   [threads] resume_one_thread: resuming LWP 316
361.448625   [threads] proceed_one_lwp: lwp 316
361.448862   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.449083   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.449605   [threads] resume_one_lwp_throw: Resuming lwp 316 (continue, signal 0, stop not expected)
361.449970 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.316
361.451174   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
361.451710   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.451964   [threads] resume_one_thread: resuming LWP 349
361.452461   [threads] proceed_one_lwp: lwp 349
361.452716   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.453217   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.453553   [threads] resume_one_lwp_throw: Resuming lwp 349 (continue, signal 0, stop not expected)
361.454519   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.349
361.454787   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
361.455354   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.455588   [threads] resume_one_thread: resuming LWP 350
361.456106   [threads] proceed_one_lwp: lwp 350
361.456343   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.456859   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.457084   [threads] resume_one_lwp_throw: Resuming lwp 350 (continue, signal 0, stop not expected)
361.457770   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.350
361.458447   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
361.458685   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.459344   [threads] resume_one_thread: resuming LWP 351
361.459561   [threads] proceed_one_lwp: lwp 351
361.459787   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.460402   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.461038   [threads] resume_one_lwp_throw: Resuming lwp 351 (continue, signal 0, stop not expected)
361.461443   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.351
361.462109   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
361.462759   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.462985   [threads] resume_one_thread: resuming LWP 352
361.463499   [threads] proceed_one_lwp: lwp 352
361.463750   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.464243   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.464484   [threads] resume_one_lwp_throw: Resuming lwp 352 (continue, signal 0, stop not expected)
361.465240   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.352
361.465512   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
361.466068   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.466296   [threads] resume_one_thread: resuming LWP 357
361.466836   [threads] proceed_one_lwp: lwp 357
361.467062   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.467573   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.468214   [threads] resume_one_lwp_throw: Resuming lwp 357 (continue, signal 0, stop not expected)
361.468556   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.357
361.468933   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
361.469228   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.469495   [threads] resume_one_thread: resuming LWP 358
361.469758   [threads] proceed_one_lwp: lwp 358
361.470066   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.470318   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.470574   [threads] resume_one_lwp_throw: Resuming lwp 358 (continue, signal 0, stop not expected)
361.471171   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.358
361.471604   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
361.471878   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.472148   [threads] resume_one_thread: resuming LWP 359
361.472385   [threads] proceed_one_lwp: lwp 359
361.472770   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.473035   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.473272   [threads] resume_one_lwp_throw: Resuming lwp 359 (continue, signal 0, stop not expected)
361.473675   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.359
361.474132   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
361.474418   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.474669   [threads] resume_one_thread: resuming LWP 360
361.475066   [threads] proceed_one_lwp: lwp 360
361.475341   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.475582   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.475834   [threads] resume_one_lwp_throw: Resuming lwp 360 (continue, signal 0, stop not expected)
361.476326   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.360
361.476707   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
361.477050   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.477388   [threads] resume_one_thread: resuming LWP 361
361.477642   [threads] proceed_one_lwp: lwp 361
361.477908   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.478153   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.478406   [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
361.478814   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
361.479184   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
361.479448   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.479715   [threads] resume_one_thread: resuming LWP 364
361.479953   [threads] proceed_one_lwp: lwp 364
361.480284   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.480612   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.480853   [threads] resume_one_lwp_throw: Resuming lwp 364 (continue, signal 0, stop not expected)
361.481468   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.364
361.481778   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
361.482046   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.482395   [threads] resume_one_thread: resuming LWP 365
361.482641   [threads] proceed_one_lwp: lwp 365
361.483001   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.483277   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.483616   [threads] resume_one_lwp_throw: Resuming lwp 365 (continue, signal 0, stop not expected)
361.484140   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.365
361.484404   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
361.484681   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.485158   [threads] resume_one_thread: resuming LWP 366
361.485409   [threads] proceed_one_lwp: lwp 366
361.485983   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.486254   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.486512   [threads] resume_one_lwp_throw: Resuming lwp 366 (continue, signal 0, stop not expected)
361.487015   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.366
361.487310   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
361.487663   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.488042   [threads] resume_one_thread: resuming LWP 367
361.488284   [threads] proceed_one_lwp: lwp 367
361.488554   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.488813   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.489203   [threads] resume_one_lwp_throw: Resuming lwp 367 (continue, signal 0, stop not expected)
361.489729   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.367
361.489994   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
361.490277   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.490510   [threads] resume_one_thread: resuming LWP 368
361.490719   [threads] proceed_one_lwp: lwp 368
361.490944   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.491157   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.491364   [threads] resume_one_lwp_throw: Resuming lwp 368 (continue, signal 0, stop not expected)
361.491792   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.368
361.492060   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
361.492290   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.492512   [threads] resume_one_thread: resuming LWP 369
361.492828   [threads] proceed_one_lwp: lwp 369
361.493057   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.493273   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.493484   [threads] resume_one_lwp_throw: Resuming lwp 369 (continue, signal 0, stop not expected)
361.493817   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.369
361.494070   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
361.494350   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.494624   [threads] resume_one_thread: resuming LWP 370
361.494845   [threads] proceed_one_lwp: lwp 370
361.495103   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.495573   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.495836   [threads] resume_one_lwp_throw: Resuming lwp 370 (continue, signal 0, stop not expected)
361.496439   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.370
361.496743   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
361.497011   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.497427   [threads] resume_one_thread: resuming LWP 371
361.497681   [threads] proceed_one_lwp: lwp 371
361.497947   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.498311   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.498565   [threads] resume_one_lwp_throw: Resuming lwp 371 (continue, signal 0, stop not expected)
361.499088   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.371
361.499624   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
361.499926   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.500272   [threads] resume_one_thread: resuming LWP 372
361.500592   [threads] proceed_one_lwp: lwp 372
361.500966   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.501231   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.501466   [threads] resume_one_lwp_throw: Resuming lwp 372 (continue, signal 0, stop not expected)
361.501890   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.372
361.502171   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
361.502440   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.502706   [threads] resume_one_thread: resuming LWP 373
361.503087   [threads] proceed_one_lwp: lwp 373
361.503362   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.503605   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.503855   [threads] resume_one_lwp_throw: Resuming lwp 373 (continue, signal 0, stop not expected)
361.504392   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.373
361.504694   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
361.504974   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.505238   [threads] resume_one_thread: resuming LWP 374
361.505695   [threads] proceed_one_lwp: lwp 374
361.506033   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.506299   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.506600   [threads] resume_one_lwp_throw: Resuming lwp 374 (continue, signal 0, stop not expected)
361.507009   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.374
361.507295   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
361.507810   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.508093   [threads] resume_one_thread: resuming LWP 375
361.508339   [threads] proceed_one_lwp: lwp 375
361.508713   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.509047   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.509297   [threads] resume_one_lwp_throw: Resuming lwp 375 (continue, signal 0, stop not expected)
361.509766   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.375
361.510176   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
361.510270   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.510347   [threads] resume_one_thread: resuming LWP 376
361.510412   [threads] proceed_one_lwp: lwp 376
361.510492   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.510571   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.510638   [threads] resume_one_lwp_throw: Resuming lwp 376 (continue, signal 0, stop not expected)
361.511063   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.376
361.511213   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
361.511300   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.511375   [threads] resume_one_thread: resuming LWP 377
361.511443   [threads] proceed_one_lwp: lwp 377
361.511521   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.511598   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.511665   [threads] resume_one_lwp_throw: Resuming lwp 377 (continue, signal 0, stop not expected)
361.511877   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.377
361.511985   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
361.512069   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.512146   [threads] resume_one_thread: resuming LWP 378
361.512214   [threads] proceed_one_lwp: lwp 378
361.512292   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.512365   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.512430   [threads] resume_one_lwp_throw: Resuming lwp 378 (continue, signal 0, stop not expected)
361.512624   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.378
361.512754   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
361.512840   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.512915   [threads] resume_one_thread: resuming LWP 379
361.512979   [threads] proceed_one_lwp: lwp 379
361.513042   [threads] proceed_one_lwp:    stepping LWP 379, client wants it stepping
361.513131   [threads] linux_get_pc_32bit: stop pc is 0x45b460
361.513270   [threads] linux_get_pc_32bit: stop pc is 0x45b460
361.513564   [threads] set_single_step_breakpoint: [zyan1]  thread LWP 316.379
361.513931   [threads] write_memory: Writing 01de to 0x0045b462 in process 316
361.514266   [threads] linux_get_pc_32bit: stop pc is 0x45b460
361.514534   [threads] resume_one_lwp_throw:   continue from pc 0x45b460
361.514782   [threads] resume_one_lwp_throw: Resuming lwp 379 (continue, signal 0, stop not expected)
361.515189 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.379
361.515612   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
361.515899   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.516353   [threads] resume_one_thread: resuming LWP 380
361.516618   [threads] proceed_one_lwp: lwp 380
361.516899   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.517161   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.517409   [threads] resume_one_lwp_throw: Resuming lwp 380 (continue, signal 0, stop not expected)
361.517800   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.380
361.518090   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
361.518453   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.518711   [threads] resume_one_thread: resuming LWP 381
361.519126   [threads] proceed_one_lwp: lwp 381
361.519401   [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
361.519661   [threads] resume_one_lwp_throw:   continue from pc 0x4e9f6646
361.520134   [threads] resume_one_lwp_throw: Resuming lwp 381 (continue, signal 0, stop not expected)
361.520623   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.381
361.520919   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
361.521204   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.521473   [threads] resume_one_thread: resuming LWP 382
361.521710   [threads] proceed_one_lwp: lwp 382
361.522059   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.522427   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.522683   [threads] resume_one_lwp_throw: Resuming lwp 382 (continue, signal 0, stop not expected)
361.523237   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.382
361.523654   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
361.523935   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.524192   [threads] resume_one_thread: resuming LWP 383
361.524533   [threads] proceed_one_lwp: lwp 383
361.524908   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.525172   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.525435   [threads] resume_one_lwp_throw: Resuming lwp 383 (continue, signal 0, stop not expected)
361.525935   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.383
361.526344   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
361.526576   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.526797   [threads] resume_one_thread: resuming LWP 384
361.527041   [threads] proceed_one_lwp: lwp 384
361.527382   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.527633   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.527890   [threads] resume_one_lwp_throw: Resuming lwp 384 (continue, signal 0, stop not expected)
361.528283   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.384
361.528889   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
361.529180   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.529447   [threads] resume_one_thread: resuming LWP 385
361.529686   [threads] proceed_one_lwp: lwp 385
361.529952   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.530277   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.530545   [threads] resume_one_lwp_throw: Resuming lwp 385 (continue, signal 0, stop not expected)
361.530933   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.385
361.531231   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
361.531497   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.531768   [threads] resume_one_thread: resuming LWP 386
361.532005   [threads] proceed_one_lwp: lwp 386
361.532270   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.532526   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.532765   [threads] resume_one_lwp_throw: Resuming lwp 386 (continue, signal 0, stop not expected)
361.533159   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.386
361.533446   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
361.533727   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.533993   [threads] resume_one_thread: resuming LWP 387
361.534230   [threads] proceed_one_lwp: lwp 387
361.534758   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.535111   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.535388   [threads] resume_one_lwp_throw: Resuming lwp 387 (continue, signal 0, stop not expected)
361.535928   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.387
361.536225   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
361.536510   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.536865   [threads] resume_one_thread: resuming LWP 388
361.537192   [threads] proceed_one_lwp: lwp 388
361.537461   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.537716   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.537959   [threads] resume_one_lwp_throw: Resuming lwp 388 (continue, signal 0, stop not expected)
361.538485   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.388
361.538934   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
361.539167   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.539436   [threads] resume_one_thread: resuming LWP 389
361.539676   [threads] proceed_one_lwp: lwp 389
361.540126   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.540399   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.540637   [threads] resume_one_lwp_throw: Resuming lwp 389 (continue, signal 0, stop not expected)
361.541305   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.389
361.541603   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
361.541982   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.542362   [threads] resume_one_thread: resuming LWP 390
361.542605   [threads] proceed_one_lwp: lwp 390
361.542876   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.543140   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.543460   [threads] resume_one_lwp_throw: Resuming lwp 390 (continue, signal 0, stop not expected)
361.543959   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.390
361.544250   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
361.544634   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.544856   [threads] resume_one_thread: resuming LWP 391
361.545071   [threads] proceed_one_lwp: lwp 391
361.545302   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.545517   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.545851   [threads] resume_one_lwp_throw: Resuming lwp 391 (continue, signal 0, stop not expected)
361.546256   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.391
361.546514   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
361.546899   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.547126   [threads] resume_one_thread: resuming LWP 392
361.547340   [threads] proceed_one_lwp: lwp 392
361.547563   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.547779   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.547992   [threads] resume_one_lwp_throw: Resuming lwp 392 (continue, signal 0, stop not expected)
361.548378   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.392
361.548637   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
361.548928   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.549266   [threads] resume_one_thread: resuming LWP 393
361.549588   [threads] proceed_one_lwp: lwp 393
361.549860   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.550197   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.550463   [threads] resume_one_lwp_throw: Resuming lwp 393 (continue, signal 0, stop not expected)
361.550860   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.393
361.551162   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
361.551442   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.551694   [threads] resume_one_thread: resuming LWP 394
361.551945   [threads] proceed_one_lwp: lwp 394
361.552208   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.552450   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.552706   [threads] resume_one_lwp_throw: Resuming lwp 394 (continue, signal 0, stop not expected)
361.553190   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.394
361.553488   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
361.553777   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.554125   [threads] resume_one_thread: resuming LWP 395
361.554388   [threads] proceed_one_lwp: lwp 395
361.554661   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.554900   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.555152   [threads] resume_one_lwp_throw: Resuming lwp 395 (continue, signal 0, stop not expected)
361.555535   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.395
361.555842   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
361.556255   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.556527   [threads] resume_one_thread: resuming LWP 396
361.556771   [threads] proceed_one_lwp: lwp 396
361.557037   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.557295   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
361.557938   [threads] resume_one_lwp_throw: Resuming lwp 396 (continue, signal 0, stop not expected)
361.558339   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.396
361.558842   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
361.559197   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.559490   [threads] resume_one_thread: resuming LWP 397
361.559728   [threads] proceed_one_lwp: lwp 397
361.560204   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.560468   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.560724   [threads] resume_one_lwp_throw: Resuming lwp 397 (continue, signal 0, stop not expected)
361.561231   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.397
361.561522   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
361.561802   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.562061   [threads] resume_one_thread: resuming LWP 398
361.562585   [threads] proceed_one_lwp: lwp 398
361.562857   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.563181   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.563424   [threads] resume_one_lwp_throw: Resuming lwp 398 (continue, signal 0, stop not expected)
361.563821   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.398
361.564090   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
361.564380   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.564633   [threads] resume_one_thread: resuming LWP 399
361.564881   [threads] proceed_one_lwp: lwp 399
361.565136   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.565542   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.565785   [threads] resume_one_lwp_throw: Resuming lwp 399 (continue, signal 0, stop not expected)
361.566267   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.399
361.566567   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
361.566830   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.567181   [threads] resume_one_thread: resuming LWP 400
361.567502   [threads] proceed_one_lwp: lwp 400
361.567771   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.568012   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.568342   [threads] resume_one_lwp_throw: Resuming lwp 400 (continue, signal 0, stop not expected)
361.568750   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.400
361.569194   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
361.569619   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.569882   [threads] resume_one_thread: resuming LWP 401
361.570175   [threads] proceed_one_lwp: lwp 401
361.570598   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.570865   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.571220   [threads] resume_one_lwp_throw: Resuming lwp 401 (continue, signal 0, stop not expected)
361.571711   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.401
361.572014   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
361.572302   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.572557   [threads] resume_one_thread: resuming LWP 403
361.572949   [threads] proceed_one_lwp: lwp 403
361.573324   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.573588   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.573825   [threads] resume_one_lwp_throw: Resuming lwp 403 (continue, signal 0, stop not expected)
361.574469   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.403
361.574750   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
361.575040   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.575307   [threads] resume_one_thread: resuming LWP 404
361.575550   [threads] proceed_one_lwp: lwp 404
361.575817   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.576070   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.576421   [threads] resume_one_lwp_throw: Resuming lwp 404 (continue, signal 0, stop not expected)
361.577020   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.404
361.577398   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
361.577671   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.577939   [threads] resume_one_thread: resuming LWP 405
361.578173   [threads] proceed_one_lwp: lwp 405
361.578616   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.578883   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.579134   [threads] resume_one_lwp_throw: Resuming lwp 405 (continue, signal 0, stop not expected)
361.579539   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.405
361.579826   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
361.580274   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.580549   [threads] resume_one_thread: resuming LWP 406
361.580918   [threads] proceed_one_lwp: lwp 406
361.581192   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.581449   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.581689   [threads] resume_one_lwp_throw: Resuming lwp 406 (continue, signal 0, stop not expected)
361.582089   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.406
361.582371   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
361.582718   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.582978   [threads] resume_one_thread: resuming LWP 407
361.583230   [threads] proceed_one_lwp: lwp 407
361.583561   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.583930   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.584190   [threads] resume_one_lwp_throw: Resuming lwp 407 (continue, signal 0, stop not expected)
361.584576   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.407
361.584878   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
361.585144   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.585530   [threads] resume_one_thread: resuming LWP 408
361.586004   [threads] proceed_one_lwp: lwp 408
361.586282   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.586601   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.586853   [threads] resume_one_lwp_throw: Resuming lwp 408 (continue, signal 0, stop not expected)
361.587445   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.408
361.587742   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
361.588023   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.588398   [threads] resume_one_thread: resuming LWP 409
361.588723   [threads] proceed_one_lwp: lwp 409
361.588981   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.589256   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.589621   [threads] resume_one_lwp_throw: Resuming lwp 409 (continue, signal 0, stop not expected)
361.590264   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.409
361.590672   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
361.590916   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.591135   [threads] resume_one_thread: resuming LWP 410
361.591347   [threads] proceed_one_lwp: lwp 410
361.591569   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.591855   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
361.592131   [threads] resume_one_lwp_throw: Resuming lwp 410 (continue, signal 0, stop not expected)
sigchld_handler
361.593408   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.410
361.593670   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
361.593901   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.594121   [threads] resume_one_thread: resuming LWP 411
361.594330   [threads] proceed_one_lwp: lwp 411
361.594558   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.594767   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.594974   [threads] resume_one_lwp_throw: Resuming lwp 411 (continue, signal 0, stop not expected)
361.595312   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.411
sigchld_handler
361.595586   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
361.595943   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.596166   [threads] resume_one_thread: resuming LWP 412
361.596377   [threads] proceed_one_lwp: lwp 412
361.596604   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.596819   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
sigchld_handler
361.597172   [threads] resume_one_lwp_throw: Resuming lwp 412 (continue, signal 0, stop not expected)
361.597510   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.412
361.597773   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
361.598007   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.598228   [threads] resume_one_thread: resuming LWP 414
361.598436   [threads] proceed_one_lwp: lwp 414
361.598660   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.598885   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.599096   [threads] resume_one_lwp_throw: Resuming lwp 414 (continue, signal 0, stop not expected)
361.599531   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.414
361.599795   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
361.600082   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.600318   [threads] resume_one_thread: resuming LWP 433
361.600526   [threads] proceed_one_lwp: lwp 433
361.600750   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.600963   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.601176   [threads] resume_one_lwp_throw: Resuming lwp 433 (continue, signal 0, stop not expected)
361.601507   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.433
361.601761   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
361.601996   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.602206   [threads] resume_one_thread: resuming LWP 436
361.602403   [threads] proceed_one_lwp: lwp 436
361.602614   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.602822   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.603021   [threads] resume_one_lwp_throw: Resuming lwp 436 (continue, signal 0, stop not expected)
361.603390   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.436
361.603631   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
361.603851   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.604067   [threads] resume_one_thread: resuming LWP 437
361.604267   [threads] proceed_one_lwp: lwp 437
361.604476   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.604678   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.604878   [threads] resume_one_lwp_throw: Resuming lwp 437 (continue, signal 0, stop not expected)
361.605240   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.437
361.605480   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
361.605700   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.605911   [threads] resume_one_thread: resuming LWP 483
361.606115   [threads] proceed_one_lwp: lwp 483
361.606323   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.606525   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.606725   [threads] resume_one_lwp_throw: Resuming lwp 483 (continue, signal 0, stop not expected)
361.607047   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.483
361.607322   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
361.607545   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.607758   [threads] resume_one_thread: resuming LWP 484
361.607956   [threads] proceed_one_lwp: lwp 484
361.608169   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.608372   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.608572   [threads] resume_one_lwp_throw: Resuming lwp 484 (continue, signal 0, stop not expected)
361.608888   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.484
361.609137   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
361.609364   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.609578   [threads] resume_one_thread: resuming LWP 493
361.609780   [threads] proceed_one_lwp: lwp 493
361.609998   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.610284   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.610486   [threads] resume_one_lwp_throw: Resuming lwp 493 (continue, signal 0, stop not expected)
361.610809   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.493
361.611047   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
361.611272   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.611482   [threads] resume_one_thread: resuming LWP 508
361.611682   [threads] proceed_one_lwp: lwp 508
361.611892   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.612096   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.612298   [threads] resume_one_lwp_throw: Resuming lwp 508 (continue, signal 0, stop not expected)
361.612622   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.508
361.612901   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
361.613122   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.613335   [threads] resume_one_thread: resuming LWP 613
361.613534   [threads] proceed_one_lwp: lwp 613
361.613744   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.613945   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.614144   [threads] resume_one_lwp_throw: Resuming lwp 613 (continue, signal 0, stop not expected)
361.614507   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.613
361.614745   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
361.614967   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.615178   [threads] resume_one_thread: resuming LWP 624
361.615378   [threads] proceed_one_lwp: lwp 624
361.615593   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.615796   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.615996   [threads] resume_one_lwp_throw: Resuming lwp 624 (continue, signal 0, stop not expected)
361.616317   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.624
361.616669   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
361.616892   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.617103   [threads] resume_one_thread: resuming LWP 655
361.617301   [threads] proceed_one_lwp: lwp 655
361.617514   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.617718   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.617918   [threads] resume_one_lwp_throw: Resuming lwp 655 (continue, signal 0, stop not expected)
361.618275   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.655
361.618513   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
361.618737   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.618949   [threads] resume_one_thread: resuming LWP 660
361.619150   [threads] proceed_one_lwp: lwp 660
361.619357   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.619559   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.619763   [threads] resume_one_lwp_throw: Resuming lwp 660 (continue, signal 0, stop not expected)
361.620136   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.660
361.620386   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
361.620620   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.620841   [threads] resume_one_thread: resuming LWP 661
361.621045   [threads] proceed_one_lwp: lwp 661
361.621260   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.621487   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.621760   [threads] resume_one_lwp_throw: Resuming lwp 661 (continue, signal 0, stop not expected)
361.622245   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.661
361.622510   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
361.622737   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.623083   [threads] resume_one_thread: resuming LWP 1074
361.623348   [threads] proceed_one_lwp: lwp 1074
361.623603   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.623901   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.624144   [threads] resume_one_lwp_throw: Resuming lwp 1074 (continue, signal 0, stop not expected)
sigchld_handler
361.624881   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1074
361.625202   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
361.625441   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.625664   [threads] resume_one_thread: resuming LWP 1118
361.625883   [threads] proceed_one_lwp: lwp 1118
361.626111   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.626329   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.626543   [threads] resume_one_lwp_throw: Resuming lwp 1118 (continue, signal 0, stop not expected)
361.626878   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1118
361.627148   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
361.627389   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.627675   [threads] resume_one_thread: resuming LWP 1293
361.627914   [threads] proceed_one_lwp: lwp 1293
361.628185   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.628444   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.628695   [threads] resume_one_lwp_throw: Resuming lwp 1293 (continue, signal 0, stop not expected)
361.629078   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1293
361.629345   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 0
361.629578   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.629796   [threads] resume_one_thread: resuming LWP 3027
361.630065   [threads] proceed_one_lwp: lwp 3027
361.630307   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.630520   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.630730   [threads] resume_one_lwp_throw: Resuming lwp 3027 (continue, signal 0, stop not expected)
361.631293   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3027
361.631708   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 0
361.631953   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
361.632179   [threads] resume_one_thread: resuming LWP 3028
361.632386   [threads] proceed_one_lwp: lwp 3028
361.632607   [threads] linux_get_pc_32bit: stop pc is 0x4ea70c34
361.632818   [threads] resume_one_lwp_throw:   continue from pc 0x4ea70c34
361.633026   [threads] resume_one_lwp_throw: Resuming lwp 3028 (continue, signal 0, stop not expected)
361.633667   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3028
361.634028 [threads] resume: exit
361.634253 [threads] wait_1: enter
361.634469   [threads] wait_1: [<all threads>]
361.634893   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3032, ERRNO-OK
361.635157   [threads] wait_for_event_filtered: waitpid 3032 received SIGSTOP - Stopped (signal) (stopped)
361.635458   [threads] filter_event: Saving LWP 3032 status SIGSTOP - Stopped (signal) (stopped) in stopped_pids list
361.635698   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3031, ERRNO-OK
361.635929   [threads] wait_for_event_filtered: waitpid 3031 received SIGSTOP - Stopped (signal) (stopped)
361.636219   [threads] filter_event: Saving LWP 3031 status SIGSTOP - Stopped (signal) (stopped) in stopped_pids list
361.636469   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 411, ERRNO-OK
361.636702   [threads] wait_for_event_filtered: waitpid 411 received SIGTRAP - Trace/breakpoint trap (stopped)
361.637065   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.637293   [threads] get_pc: pc is 0x4e9fb3e8
361.637519   [threads] handle_extended_wait: Got fork event from LWP 411, new child is 3032
361.638019   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.638263   [threads] get_pc: pc is 0x4e9fb3e8
361.638513   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 410, ERRNO-OK
361.638759   [threads] wait_for_event_filtered: waitpid 410 received SIGTRAP - Trace/breakpoint trap (stopped)
361.639114   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.639339   [threads] get_pc: pc is 0x4e9fb3e8
361.639563   [threads] handle_extended_wait: Got fork event from LWP 410, new child is 3031
361.640127   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
361.640378   [threads] get_pc: pc is 0x4e9fb3e8
361.640658   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 379, ERRNO-OK
361.641010   [threads] wait_for_event_filtered: waitpid 379 received SIGTRAP - Trace/breakpoint trap (stopped)
361.641413   [threads] linux_get_pc_32bit: stop pc is 0x45b462
361.641651   [threads] get_pc: pc is 0x45b462
361.642092   [threads] save_stop_reason: LWP 316.379 stopped by software breakpoint
361.642445   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 316, ERRNO-OK
361.642905   [threads] wait_for_event_filtered: waitpid 316 received SIGCHLD - Child exited (stopped)
361.643287   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.643560   [threads] get_pc: pc is 0x4e97c214
361.643861   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
361.644224   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
361.644556   [threads] linux_get_pc_32bit: stop pc is 0x45b462
361.644822   [threads] get_pc: pc is 0x45b462
361.645071   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.379, last_resume_kind 1, lp->stop_reason 1
361.645545   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.645788   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.411, last_resume_kind 0, lp->stop_reason 0
361.646270   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
361.646558   [threads] linux_get_pc_32bit: stop pc is 0x45b462
361.646777   [threads] get_pc: pc is 0x45b462
361.647002   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.379, last_resume_kind 1, lp->stop_reason 1
361.647266   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
361.647501   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.411, last_resume_kind 0, lp->stop_reason 0
361.647798   [threads] wait_1: LWP 411: extended event with waitstatus status->kind = VFORKED, child_ptid = 3032.3032.0
361.648038   [threads] wait_1: Hit a non-gdbserver trap event.
361.648464   [threads] stop_all_lwps: enter
361.648688     [threads] stop_all_lwps: stop, except=LWP 316.411
361.648900     [threads] send_sigstop: Sending sigstop to lwp 349
sigchld_handler
361.649425     [threads] send_sigstop: Sending sigstop to lwp 350
sigchld_handler
361.649857     [threads] send_sigstop: Sending sigstop to lwp 351
sigchld_handler
361.650356     [threads] send_sigstop: Sending sigstop to lwp 352
sigchld_handler
361.650758     [threads] send_sigstop: Sending sigstop to lwp 357
361.651007 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 358
sigchld_handler
361.651520     [threads] send_sigstop: Sending sigstop to lwp 359
361.651764     [threads] send_sigstop: Sending sigstop to lwp 360
361.652012 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 361
361.652400 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 364
sigchld_handler
361.652995     [threads] send_sigstop: Sending sigstop to lwp 365
sigchld_handler
361.653394     [threads] send_sigstop: Sending sigstop to lwp 366
361.653632 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 367
sigchld_handler
361.654126     [threads] send_sigstop: Sending sigstop to lwp 368
361.654373 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 369
361.654712 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 370
sigchld_handler
361.655200     [threads] send_sigstop: Sending sigstop to lwp 371
sigchld_handler
361.655598     [threads] send_sigstop: Sending sigstop to lwp 372
361.655841 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 373
sigchld_handler
361.656443     [threads] send_sigstop: Sending sigstop to lwp 374
361.656699 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 375
sigchld_handler
361.657213     [threads] send_sigstop: Sending sigstop to lwp 376
sigchld_handler
361.657630     [threads] send_sigstop: Sending sigstop to lwp 377
361.657878 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 378
361.658228 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 380
361.658620 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 381
sigchld_handler
361.659418     [threads] send_sigstop: Sending sigstop to lwp 382
361.659553     [threads] send_sigstop: sigchld_handler
Sending sigstop to lwp 383
361.659712     [threads] send_sigstop: sigchld_handler
Sending sigstop to lwp 384
361.659864 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 385
361.660945 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 386
sigchld_handler
361.661715     [threads] send_sigstop: Sending sigstop to lwp 387
sigchld_handler
361.662136     [threads] send_sigstop: Sending sigstop to lwp 388
361.662384 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 389
sigchld_handler
361.663015     [threads] send_sigstop: Sending sigstop to lwp 390
361.663326 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 391
sigchld_handler
361.663854     [threads] send_sigstop: Sending sigstop to lwp 392
sigchld_handler
361.664251     [threads] send_sigstop: Sending sigstop to lwp 393
361.664495     [threads] send_sigstop: Sending sigstop to lwp 394
361.664876 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 395
361.665330 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 396
361.665680 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 397
361.666181 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 398
361.666590 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 399
361.666957 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 400
361.667300 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 401
361.667640 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 403
sigchld_handler
361.668231     [threads] send_sigstop: Sending sigstop to lwp 404
sigchld_handler
361.668454     [threads] send_sigstop: Sending sigstop to lwp 405
361.668562     [threads] send_sigstop: sigchld_handler
Sending sigstop to lwp 406
361.668832 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 407
361.669187 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 408
sigchld_handler
361.669807     [threads] send_sigstop: Sending sigstop to lwp 409
361.670130     [threads] send_sigstop: Sending sigstop to lwp 412
361.670432 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 414
361.670944 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 433
361.671351 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 436
sigchld_handler
361.671898     [threads] send_sigstop: Sending sigstop to lwp 437
sigchld_handler
361.672319     [threads] send_sigstop: Sending sigstop to lwp 483
361.672746 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 484
361.673372 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 493
361.673734     [threads] send_sigstop: Sending sigstop to lwp 508
361.673986 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 613
sigchld_handler
361.674531     [threads] send_sigstop: Sending sigstop to lwp 624
361.674783 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 655
sigchld_handler
361.675346     [threads] send_sigstop: Sending sigstop to lwp 660
361.675598 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 661
361.675946 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1074
361.676305 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1118
361.676787 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1293
361.677217 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 3027
361.677622 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 3028
sigchld_handler
361.678268     [threads] wait_for_sigstop: pulling events
361.678555     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3028, ERRNO-OK
361.678858     [threads] wait_for_event_filtered: waitpid 3028 received SIGSTOP - Stopped (signal) (stopped)
361.679326     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.679589     [threads] get_pc: pc is 0x4e97c216
361.679848     [threads] filter_event: Expected stop.
361.680537     [threads] filter_event: SIGSTOP caught for LWP 316.3028 while stopping threads.
361.680640     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3027, ERRNO-OK
361.680735     [threads] wait_for_event_filtered: waitpid 3027 received SIGSTOP - Stopped (signal) (stopped)
361.680990     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.681105     [threads] get_pc: pc is 0x4e97c216
361.681176     [threads] filter_event: Expected stop.
361.681255     [threads] filter_event: SIGSTOP caught for LWP 316.3027 while stopping threads.
361.681340     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1293, ERRNO-OK
361.681427     [threads] wait_for_event_filtered: waitpid 1293 received SIGSTOP - Stopped (signal) (stopped)
361.681645     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.681825     [threads] get_pc: pc is 0x4e97c214
361.682062     [threads] filter_event: Expected stop.
361.682328     [threads] filter_event: SIGSTOP caught for LWP 316.1293 while stopping threads.
361.682598     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1118, ERRNO-OK
361.682955     [threads] wait_for_event_filtered: waitpid 1118 received SIGSTOP - Stopped (signal) (stopped)
361.683416     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.683794     [threads] get_pc: pc is 0x4e97c214
361.684041     [threads] filter_event: Expected stop.
361.684306     [threads] filter_event: SIGSTOP caught for LWP 316.1118 while stopping threads.
361.684581     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1074, ERRNO-OK
361.684948     [threads] wait_for_event_filtered: waitpid 1074 received SIGSTOP - Stopped (signal) (stopped)
361.685395     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.685675     [threads] get_pc: pc is 0x4e97c214
361.686108     [threads] filter_event: Expected stop.
361.686504     [threads] filter_event: SIGSTOP caught for LWP 316.1074 while stopping threads.
361.686785     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 661, ERRNO-OK
361.687124     [threads] wait_for_event_filtered: waitpid 661 received SIGSTOP - Stopped (signal) (stopped)
361.687569     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.687775     [threads] get_pc: pc is 0x4e97c216
361.688014     [threads] filter_event: Expected stop.
361.688612     [threads] filter_event: SIGSTOP caught for LWP 316.661 while stopping threads.
361.688880     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 660, ERRNO-OK
361.689370     [threads] wait_for_event_filtered: waitpid 660 received SIGSTOP - Stopped (signal) (stopped)
361.689816     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.690280     [threads] get_pc: pc is 0x4e97c216
361.690512     [threads] filter_event: Expected stop.
361.690735     [threads] filter_event: SIGSTOP caught for LWP 316.660 while stopping threads.
361.690983     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 655, ERRNO-OK
361.691419     [threads] wait_for_event_filtered: waitpid 655 received SIGSTOP - Stopped (signal) (stopped)
361.691851     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.692256     [threads] get_pc: pc is 0x4e97c214
361.692626     [threads] filter_event: Expected stop.
361.692892     [threads] filter_event: SIGSTOP caught for LWP 316.655 while stopping threads.
361.693174     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 624, ERRNO-OK
361.693569     [threads] wait_for_event_filtered: waitpid 624 received SIGSTOP - Stopped (signal) (stopped)
361.693993     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.694272     [threads] get_pc: pc is 0x4e97c214
361.694525     [threads] filter_event: Expected stop.
361.694790     [threads] filter_event: SIGSTOP caught for LWP 316.624 while stopping threads.
361.695050     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 613, ERRNO-OK
361.695333     [threads] wait_for_event_filtered: waitpid 613 received SIGSTOP - Stopped (signal) (stopped)
361.695761     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.696032     [threads] get_pc: pc is 0x4e97c216
361.696278     [threads] filter_event: Expected stop.
361.696535     [threads] filter_event: SIGSTOP caught for LWP 316.613 while stopping threads.
361.696809     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 508, ERRNO-OK
361.697087     [threads] wait_for_event_filtered: waitpid 508 received SIGSTOP - Stopped (signal) (stopped)
361.697510     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.697975     [threads] get_pc: pc is 0x4e97c216
361.698243     [threads] filter_event: Expected stop.
361.698494     [threads] filter_event: SIGSTOP caught for LWP 316.508 while stopping threads.
361.698777     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 493, ERRNO-OK
361.699159     [threads] wait_for_event_filtered: waitpid 493 received SIGSTOP - Stopped (signal) (stopped)
361.699710     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.699978     [threads] get_pc: pc is 0x4e97c214
361.700444     [threads] filter_event: Expected stop.
361.700777     [threads] filter_event: SIGSTOP caught for LWP 316.493 while stopping threads.
361.701059     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 484, ERRNO-OK
361.701343     [threads] wait_for_event_filtered: waitpid 484 received SIGSTOP - Stopped (signal) (stopped)
361.701948     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.702237     [threads] get_pc: pc is 0x4e97c216
361.702495     [threads] filter_event: Expected stop.
361.702760     [threads] filter_event: SIGSTOP caught for LWP 316.484 while stopping threads.
361.703173     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 483, ERRNO-OK
361.703468     [threads] wait_for_event_filtered: waitpid 483 received SIGSTOP - Stopped (signal) (stopped)
361.703889     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.704342     [threads] get_pc: pc is 0x4e97c216
361.704615     [threads] filter_event: Expected stop.
361.704863     [threads] filter_event: SIGSTOP caught for LWP 316.483 while stopping threads.
361.705143     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 437, ERRNO-OK
361.705494     [threads] wait_for_event_filtered: waitpid 437 received SIGSTOP - Stopped (signal) (stopped)
361.706156     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.706353     [threads] get_pc: pc is 0x4e97c216
361.706594     [threads] filter_event: Expected stop.
361.706937     [threads] filter_event: SIGSTOP caught for LWP 316.437 while stopping threads.
361.707287     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 436, ERRNO-OK
361.707566     [threads] wait_for_event_filtered: waitpid 436 received SIGSTOP - Stopped (signal) (stopped)
361.707999     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.708259     [threads] get_pc: pc is 0x4e97c214
361.708512     [threads] filter_event: Expected stop.
361.708971     [threads] filter_event: SIGSTOP caught for LWP 316.436 while stopping threads.
361.709258     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 433, ERRNO-OK
361.709540     [threads] wait_for_event_filtered: waitpid 433 received SIGSTOP - Stopped (signal) (stopped)
361.710137     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.710418     [threads] get_pc: pc is 0x4e97c216
361.710677     [threads] filter_event: Expected stop.
361.711013     [threads] filter_event: SIGSTOP caught for LWP 316.433 while stopping threads.
361.711416     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 414, ERRNO-OK
361.711710     [threads] wait_for_event_filtered: waitpid 414 received SIGSTOP - Stopped (signal) (stopped)
361.712176     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.712434     [threads] get_pc: pc is 0x4e97c216
361.712690     [threads] filter_event: Expected stop.
361.712944     [threads] filter_event: SIGSTOP caught for LWP 316.414 while stopping threads.
361.713226     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 412, ERRNO-OK
361.713632     [threads] wait_for_event_filtered: waitpid 412 received SIGSTOP - Stopped (signal) (stopped)
361.714113     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.714392     [threads] get_pc: pc is 0x4e97c216
361.714647     [threads] filter_event: Expected stop.
361.715004     [threads] filter_event: SIGSTOP caught for LWP 316.412 while stopping threads.
361.715296     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 409, ERRNO-OK
361.715581     [threads] wait_for_event_filtered: waitpid 409 received SIGSTOP - Stopped (signal) (stopped)
361.716110     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.716310     [threads] get_pc: pc is 0x4e97c216
361.716640     [threads] filter_event: Expected stop.
361.716892     [threads] filter_event: SIGSTOP caught for LWP 316.409 while stopping threads.
361.717186     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 408, ERRNO-OK
361.717467     [threads] wait_for_event_filtered: waitpid 408 received SIGSTOP - Stopped (signal) (stopped)
361.717889     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.718144     [threads] get_pc: pc is 0x4e97c216
361.718404     [threads] filter_event: Expected stop.
361.718652     [threads] filter_event: SIGSTOP caught for LWP 316.408 while stopping threads.
361.718931     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 407, ERRNO-OK
361.719212     [threads] wait_for_event_filtered: waitpid 407 received SIGSTOP - Stopped (signal) (stopped)
361.719728     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.720229     [threads] get_pc: pc is 0x4e97c214
361.720463     [threads] filter_event: Expected stop.
361.720775     [threads] filter_event: SIGSTOP caught for LWP 316.407 while stopping threads.
361.721076     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 406, ERRNO-OK
361.721367     [threads] wait_for_event_filtered: waitpid 406 received SIGSTOP - Stopped (signal) (stopped)
361.721808     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.722067     [threads] get_pc: pc is 0x4e97c216
361.722420     [threads] filter_event: Expected stop.
361.722665     [threads] filter_event: SIGSTOP caught for LWP 316.406 while stopping threads.
361.722957     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 405, ERRNO-OK
361.723245     [threads] wait_for_event_filtered: waitpid 405 received SIGSTOP - Stopped (signal) (stopped)
361.723747     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.724006     [threads] get_pc: pc is 0x4e97c216
361.724265     [threads] filter_event: Expected stop.
361.724663     [threads] filter_event: SIGSTOP caught for LWP 316.405 while stopping threads.
361.725023     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 404, ERRNO-OK
361.725318     [threads] wait_for_event_filtered: waitpid 404 received SIGSTOP - Stopped (signal) (stopped)
361.725725     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.726109     [threads] get_pc: pc is 0x4e97c216
361.726354     [threads] filter_event: Expected stop.
361.726754     [threads] filter_event: SIGSTOP caught for LWP 316.404 while stopping threads.
361.727112     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 403, ERRNO-OK
361.727374     [threads] wait_for_event_filtered: waitpid 403 received SIGSTOP - Stopped (signal) (stopped)
361.727740     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.728092     [threads] get_pc: pc is 0x4e97c216
361.728306     [threads] filter_event: Expected stop.
361.728523     [threads] filter_event: SIGSTOP caught for LWP 316.403 while stopping threads.
361.728936     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 401, ERRNO-OK
361.729172     [threads] wait_for_event_filtered: waitpid 401 received SIGSTOP - Stopped (signal) (stopped)
361.729527     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.729760     [threads] get_pc: pc is 0x4e97c216
361.729974     [threads] filter_event: Expected stop.
361.730274     [threads] filter_event: SIGSTOP caught for LWP 316.401 while stopping threads.
361.730526     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 400, ERRNO-OK
361.730770     [threads] wait_for_event_filtered: waitpid 400 received SIGSTOP - Stopped (signal) (stopped)
361.731176     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.731431     [threads] get_pc: pc is 0x4e97c214
361.731783     [threads] filter_event: Expected stop.
361.732052     [threads] filter_event: SIGSTOP caught for LWP 316.400 while stopping threads.
361.732349     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 399, ERRNO-OK
361.732634     [threads] wait_for_event_filtered: waitpid 399 received SIGSTOP - Stopped (signal) (stopped)
361.733038     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.733433     [threads] get_pc: pc is 0x4eb53d34
361.733801     [threads] filter_event: Expected stop.
361.734069     [threads] filter_event: SIGSTOP caught for LWP 316.399 while stopping threads.
361.734451     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 398, ERRNO-OK
361.734752     [threads] wait_for_event_filtered: waitpid 398 received SIGSTOP - Stopped (signal) (stopped)
361.735177     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.735430     [threads] get_pc: pc is 0x4e97c216
361.735685     [threads] filter_event: Expected stop.
361.735948     [threads] filter_event: SIGSTOP caught for LWP 316.398 while stopping threads.
361.736251     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 397, ERRNO-OK
361.736538     [threads] wait_for_event_filtered: waitpid 397 received SIGSTOP - Stopped (signal) (stopped)
361.736932     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.737388     [threads] get_pc: pc is 0x4e97c216
361.737645     [threads] filter_event: Expected stop.
361.737897     [threads] filter_event: SIGSTOP caught for LWP 316.397 while stopping threads.
361.738197     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 396, ERRNO-OK
361.738610     [threads] wait_for_event_filtered: waitpid 396 received SIGSTOP - Stopped (signal) (stopped)
361.739033     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.739291     [threads] get_pc: pc is 0x4eb53d34
361.739550     [threads] filter_event: Expected stop.
361.739946     [threads] filter_event: SIGSTOP caught for LWP 316.396 while stopping threads.
361.740299     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 395, ERRNO-OK
361.740588     [threads] wait_for_event_filtered: waitpid 395 received SIGSTOP - Stopped (signal) (stopped)
361.741124     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.741405     [threads] get_pc: pc is 0x4e97c216
361.741645     [threads] filter_event: Expected stop.
361.741909     [threads] filter_event: SIGSTOP caught for LWP 316.395 while stopping threads.
361.742352     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 394, ERRNO-OK
361.742775     [threads] wait_for_event_filtered: waitpid 394 received SIGSTOP - Stopped (signal) (stopped)
361.743202     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.743467     [threads] get_pc: pc is 0x4e97c216
361.743722     [threads] filter_event: Expected stop.
361.743983     [threads] filter_event: SIGSTOP caught for LWP 316.394 while stopping threads.
361.744405     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 393, ERRNO-OK
361.744791     [threads] wait_for_event_filtered: waitpid 393 received SIGSTOP - Stopped (signal) (stopped)
361.745334     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.745627     [threads] get_pc: pc is 0x4eb53d34
361.745870     [threads] filter_event: Expected stop.
361.746206     [threads] filter_event: SIGSTOP caught for LWP 316.393 while stopping threads.
361.746509     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 392, ERRNO-OK
361.746797     [threads] wait_for_event_filtered: waitpid 392 received SIGSTOP - Stopped (signal) (stopped)
361.747322     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.747593     [threads] get_pc: pc is 0x4e97c216
361.747856     [threads] filter_event: Expected stop.
361.748119     [threads] filter_event: SIGSTOP caught for LWP 316.392 while stopping threads.
361.748525     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 391, ERRNO-OK
361.748870     [threads] wait_for_event_filtered: waitpid 391 received SIGSTOP - Stopped (signal) (stopped)
361.749366     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.749646     [threads] get_pc: pc is 0x4e97c216
361.749900     [threads] filter_event: Expected stop.
361.750207     [threads] filter_event: SIGSTOP caught for LWP 316.391 while stopping threads.
361.750512     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 390, ERRNO-OK
361.750908     [threads] wait_for_event_filtered: waitpid 390 received SIGSTOP - Stopped (signal) (stopped)
361.751314     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.751592     [threads] get_pc: pc is 0x4e97c216
361.751838     [threads] filter_event: Expected stop.
361.752099     [threads] filter_event: SIGSTOP caught for LWP 316.390 while stopping threads.
361.752397     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 389, ERRNO-OK
361.752681     [threads] wait_for_event_filtered: waitpid 389 received SIGSTOP - Stopped (signal) (stopped)
361.753243     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.753496     [threads] get_pc: pc is 0x4e97c216
361.753752     [threads] filter_event: Expected stop.
361.754181     [threads] filter_event: SIGSTOP caught for LWP 316.389 while stopping threads.
361.754493     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 388, ERRNO-OK
361.754780     [threads] wait_for_event_filtered: waitpid 388 received SIGSTOP - Stopped (signal) (stopped)
361.755454     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.755719     [threads] get_pc: pc is 0x4e97c216
361.755984     [threads] filter_event: Expected stop.
361.756244     [threads] filter_event: SIGSTOP caught for LWP 316.388 while stopping threads.
361.756611     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 387, ERRNO-OK
361.756897     [threads] wait_for_event_filtered: waitpid 387 received SIGSTOP - Stopped (signal) (stopped)
361.757291     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.757561     [threads] get_pc: pc is 0x4e97c216
361.757820     [threads] filter_event: Expected stop.
361.758073     [threads] filter_event: SIGSTOP caught for LWP 316.387 while stopping threads.
361.758473     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 386, ERRNO-OK
361.758768     [threads] wait_for_event_filtered: waitpid 386 received SIGSTOP - Stopped (signal) (stopped)
361.759162     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.759659     [threads] get_pc: pc is 0x4e97c216
361.759908     [threads] filter_event: Expected stop.
361.760232     [threads] filter_event: SIGSTOP caught for LWP 316.386 while stopping threads.
361.760625     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 385, ERRNO-OK
361.760832     [threads] wait_for_event_filtered: waitpid 385 received SIGSTOP - Stopped (signal) (stopped)
361.761168     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.761329     [threads] get_pc: pc is 0x4e97c216
361.761593     [threads] filter_event: Expected stop.
361.761936     [threads] filter_event: SIGSTOP caught for LWP 316.385 while stopping threads.
361.762263     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 384, ERRNO-OK
361.762649     [threads] wait_for_event_filtered: waitpid 384 received SIGSTOP - Stopped (signal) (stopped)
361.763046     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.763414     [threads] get_pc: pc is 0x4e97c216
361.763674     [threads] filter_event: Expected stop.
361.763925     [threads] filter_event: SIGSTOP caught for LWP 316.384 while stopping threads.
361.764226     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 383, ERRNO-OK
361.764638     [threads] wait_for_event_filtered: waitpid 383 received SIGSTOP - Stopped (signal) (stopped)
361.765171     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.765452     [threads] get_pc: pc is 0x4e97c214
361.765692     [threads] filter_event: Expected stop.
361.765955     [threads] filter_event: SIGSTOP caught for LWP 316.383 while stopping threads.
361.766331     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 382, ERRNO-OK
361.766522     [threads] wait_for_event_filtered: waitpid 382 received SIGSTOP - Stopped (signal) (stopped)
361.766743     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.766897     [threads] get_pc: pc is 0x4e97c216
361.767157     [threads] filter_event: Expected stop.
361.767548     [threads] filter_event: SIGSTOP caught for LWP 316.382 while stopping threads.
361.767861     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 381, ERRNO-OK
361.768147     [threads] wait_for_event_filtered: waitpid 381 received SIGSTOP - Stopped (signal) (stopped)
361.768607     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
361.768982     [threads] get_pc: pc is 0x4e9f6646
361.769244     [threads] filter_event: Expected stop.
361.769507     [threads] filter_event: SIGSTOP caught for LWP 316.381 while stopping threads.
361.769883     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 380, ERRNO-OK
361.770228     [threads] wait_for_event_filtered: waitpid 380 received SIGSTOP - Stopped (signal) (stopped)
361.770713     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.770983     [threads] get_pc: pc is 0x4e97c214
361.771227     [threads] filter_event: Expected stop.
361.771494     [threads] filter_event: SIGSTOP caught for LWP 316.380 while stopping threads.
361.771806     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 378, ERRNO-OK
361.772094     [threads] wait_for_event_filtered: waitpid 378 received SIGSTOP - Stopped (signal) (stopped)
361.772706     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.772972     [threads] get_pc: pc is 0x4e97c216
361.773228     [threads] filter_event: Expected stop.
361.773474     [threads] filter_event: SIGSTOP caught for LWP 316.378 while stopping threads.
361.773785     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 377, ERRNO-OK
361.774292     [threads] wait_for_event_filtered: waitpid 377 received SIGSTOP - Stopped (signal) (stopped)
361.774702     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.774979     [threads] get_pc: pc is 0x4e97c216
361.775304     [threads] filter_event: Expected stop.
361.775669     [threads] filter_event: SIGSTOP caught for LWP 316.377 while stopping threads.
361.776001     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 376, ERRNO-OK
361.776250     [threads] wait_for_event_filtered: waitpid 376 received SIGSTOP - Stopped (signal) (stopped)
361.776480     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.776600     [threads] get_pc: pc is 0x4e97c216
361.776677     [threads] filter_event: Expected stop.
361.776756     [threads] filter_event: SIGSTOP caught for LWP 316.376 while stopping threads.
361.776876     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 375, ERRNO-OK
361.777083     [threads] wait_for_event_filtered: waitpid 375 received SIGSTOP - Stopped (signal) (stopped)
361.777377     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.777654     [threads] get_pc: pc is 0x4e97c216
361.778006     [threads] filter_event: Expected stop.
361.778283     [threads] filter_event: SIGSTOP caught for LWP 316.375 while stopping threads.
361.778590     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 374, ERRNO-OK
361.778875     [threads] wait_for_event_filtered: waitpid 374 received SIGSTOP - Stopped (signal) (stopped)
361.779467     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.779729     [threads] get_pc: pc is 0x4e97c214
361.780145     [threads] filter_event: Expected stop.
361.780415     [threads] filter_event: SIGSTOP caught for LWP 316.374 while stopping threads.
361.780857     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 373, ERRNO-OK
361.781225     [threads] wait_for_event_filtered: waitpid 373 received SIGSTOP - Stopped (signal) (stopped)
361.781574     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.781905     [threads] get_pc: pc is 0x4e97c216
361.782121     [threads] filter_event: Expected stop.
361.782338     [threads] filter_event: SIGSTOP caught for LWP 316.373 while stopping threads.
361.782708     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 372, ERRNO-OK
361.782950     [threads] wait_for_event_filtered: waitpid 372 received SIGSTOP - Stopped (signal) (stopped)
361.783287     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.783514     [threads] get_pc: pc is 0x4e97c216
361.783721     [threads] filter_event: Expected stop.
361.783937     [threads] filter_event: SIGSTOP caught for LWP 316.372 while stopping threads.
361.784207     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 371, ERRNO-OK
361.784453     [threads] wait_for_event_filtered: waitpid 371 received SIGSTOP - Stopped (signal) (stopped)
361.784783     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.785006     [threads] get_pc: pc is 0x4e97c214
361.785217     [threads] filter_event: Expected stop.
361.785486     [threads] filter_event: SIGSTOP caught for LWP 316.371 while stopping threads.
361.785795     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 370, ERRNO-OK
361.786056     [threads] wait_for_event_filtered: waitpid 370 received SIGSTOP - Stopped (signal) (stopped)
361.786679     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.786960     [threads] get_pc: pc is 0x4e97c216
361.787213     [threads] filter_event: Expected stop.
361.787465     [threads] filter_event: SIGSTOP caught for LWP 316.370 while stopping threads.
361.787802     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 369, ERRNO-OK
361.787969     [threads] wait_for_event_filtered: waitpid 369 received SIGSTOP - Stopped (signal) (stopped)
361.788182     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.788335     [threads] get_pc: pc is 0x4e97c214
361.788732     [threads] filter_event: Expected stop.
361.789121     [threads] filter_event: SIGSTOP caught for LWP 316.369 while stopping threads.
361.789577     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 368, ERRNO-OK
361.789880     [threads] wait_for_event_filtered: waitpid 368 received SIGSTOP - Stopped (signal) (stopped)
361.790331     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.790699     [threads] get_pc: pc is 0x4eb53d34
361.791072     [threads] filter_event: Expected stop.
361.791337     [threads] filter_event: SIGSTOP caught for LWP 316.368 while stopping threads.
361.791662     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 367, ERRNO-OK
361.792158     [threads] wait_for_event_filtered: waitpid 367 received SIGSTOP - Stopped (signal) (stopped)
361.792548     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.792829     [threads] get_pc: pc is 0x4e97c214
361.793079     [threads] filter_event: Expected stop.
361.793446     [threads] filter_event: SIGSTOP caught for LWP 316.367 while stopping threads.
361.793775     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 366, ERRNO-OK
361.794187     [threads] wait_for_event_filtered: waitpid 366 received SIGSTOP - Stopped (signal) (stopped)
361.794671     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.794945     [threads] get_pc: pc is 0x4e97c216
361.795428     [threads] filter_event: Expected stop.
361.795803     [threads] filter_event: SIGSTOP caught for LWP 316.366 while stopping threads.
361.796132     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 365, ERRNO-OK
361.796420     [threads] wait_for_event_filtered: waitpid 365 received SIGSTOP - Stopped (signal) (stopped)
361.796898     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.797194     [threads] get_pc: pc is 0x4e97c216
361.797443     [threads] filter_event: Expected stop.
361.797708     [threads] filter_event: SIGSTOP caught for LWP 316.365 while stopping threads.
361.798180     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 364, ERRNO-OK
361.798473     [threads] wait_for_event_filtered: waitpid 364 received SIGSTOP - Stopped (signal) (stopped)
361.798852     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.799124     [threads] get_pc: pc is 0x4e97c216
361.799364     [threads] filter_event: Expected stop.
361.799880     [threads] filter_event: SIGSTOP caught for LWP 316.364 while stopping threads.
361.800273     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 361, ERRNO-OK
361.800573     [threads] wait_for_event_filtered: waitpid 361 received SIGSTOP - Stopped (signal) (stopped)
361.800976     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.801295     [threads] get_pc: pc is 0x4e97c214
361.801373     [threads] filter_event: Expected stop.
361.801456     [threads] filter_event: SIGSTOP caught for LWP 316.361 while stopping threads.
361.801593     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 360, ERRNO-OK
361.801719     [threads] wait_for_event_filtered: waitpid 360 received SIGSTOP - Stopped (signal) (stopped)
361.801897     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.802002     [threads] get_pc: pc is 0x4e97c216
361.802076     [threads] filter_event: Expected stop.
361.802154     [threads] filter_event: SIGSTOP caught for LWP 316.360 while stopping threads.
361.802281     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 359, ERRNO-OK
361.802475     [threads] wait_for_event_filtered: waitpid 359 received SIGSTOP - Stopped (signal) (stopped)
361.802703     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.802792     [threads] get_pc: pc is 0x4e97c216
361.802863     [threads] filter_event: Expected stop.
361.802938     [threads] filter_event: SIGSTOP caught for LWP 316.359 while stopping threads.
361.803067     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 358, ERRNO-OK
361.803186     [threads] wait_for_event_filtered: waitpid 358 received SIGSTOP - Stopped (signal) (stopped)
361.803487     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.803602     [threads] get_pc: pc is 0x4e97c216
361.803674     [threads] filter_event: Expected stop.
361.803885     [threads] filter_event: SIGSTOP caught for LWP 316.358 while stopping threads.
361.804208     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 357, ERRNO-OK
361.804504     [threads] wait_for_event_filtered: waitpid 357 received SIGSTOP - Stopped (signal) (stopped)
361.804990     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.805265     [threads] get_pc: pc is 0x4e97c216
361.805506     [threads] filter_event: Expected stop.
361.805881     [threads] filter_event: SIGSTOP caught for LWP 316.357 while stopping threads.
361.806203     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 352, ERRNO-OK
361.806497     [threads] wait_for_event_filtered: waitpid 352 received SIGSTOP - Stopped (signal) (stopped)
361.806991     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.807410     [threads] get_pc: pc is 0x4e97c216
361.807663     [threads] filter_event: Expected stop.
361.807914     [threads] filter_event: SIGSTOP caught for LWP 316.352 while stopping threads.
361.808242     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 351, ERRNO-OK
361.808813     [threads] wait_for_event_filtered: waitpid 351 received SIGSTOP - Stopped (signal) (stopped)
361.809213     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.809482     [threads] get_pc: pc is 0x4e97c216
361.809739     [threads] filter_event: Expected stop.
361.809984     [threads] filter_event: SIGSTOP caught for LWP 316.351 while stopping threads.
361.810357     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 350, ERRNO-OK
361.810731     [threads] wait_for_event_filtered: waitpid 350 received SIGSTOP - Stopped (signal) (stopped)
361.811255     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.811552     [threads] get_pc: pc is 0x4e97c214
361.811904     [threads] filter_event: Expected stop.
361.812183     [threads] filter_event: SIGSTOP caught for LWP 316.350 while stopping threads.
361.812514     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 349, ERRNO-OK
361.812808     [threads] wait_for_event_filtered: waitpid 349 received SIGSTOP - Stopped (signal) (stopped)
361.813422     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.813682     [threads] get_pc: pc is 0x4e97c214
361.814029     [threads] filter_event: Expected stop.
361.814310     [threads] filter_event: SIGSTOP caught for LWP 316.349 while stopping threads.
361.814758     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
361.815411     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
361.816063     [threads] operator(): leader_pid=3032, leader_lp!=NULL=1, num_lwps=1, zombie=0
361.816735     [threads] operator(): leader_pid=3031, leader_lp!=NULL=1, num_lwps=1, zombie=0
361.817252     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
361.817592     [threads] stop_all_lwps: setting stopping_threads back to !stopping
361.817971   [threads] stop_all_lwps: exit
361.818298   [threads] operator(): [zyan1] operator() 3470, thread LWP 316.379, thread->last_resume_kind 1
361.818599   [threads] write_memory: Writing dbb2 to 0x0045b462 in process 316
361.819194   [threads] operator(): [zyan1] operator() 3470, thread LWP 3032.3032, thread->last_resume_kind 2
361.819495   [threads] write_memory: Writing dbb2 to 0x0045b462 in process 3032
361.819837   [threads] operator(): [zyan1] operator() 3470, thread LWP 3031.3031, thread->last_resume_kind 2
361.820202   [threads] write_memory: Writing dbb2 to 0x0045b462 in process 3031
361.820523   [threads] unstop_all_lwps: enter
361.820795     [threads] unstop_all_lwps: except=(LWP 411)
361.821043     [threads] proceed_one_lwp: lwp 316
361.821296     [threads] proceed_one_lwp:    LWP 316 has pending status, leaving stopped
361.821551     [threads] proceed_one_lwp: lwp 349
361.821806     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.822068     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.822321     [threads] resume_one_lwp_throw: Resuming lwp 349 (continue, signal 0, stop not expected)
361.822795     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.349
361.823073     [threads] proceed_one_lwp: lwp 350
361.823345     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.823587     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.823844     [threads] resume_one_lwp_throw: Resuming lwp 350 (continue, signal 0, stop not expected)
361.824495     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.350
361.824753     [threads] proceed_one_lwp: lwp 351
361.825025     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.825289     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.825531     [threads] resume_one_lwp_throw: Resuming lwp 351 (continue, signal 0, stop not expected)
361.825975     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.351
361.826534     [threads] proceed_one_lwp: lwp 352
361.826821     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.827080     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.827323     [threads] resume_one_lwp_throw: Resuming lwp 352 (continue, signal 0, stop not expected)
361.827876     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.352
361.828224     [threads] proceed_one_lwp: lwp 357
361.828482     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.828741     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.828979     [threads] resume_one_lwp_throw: Resuming lwp 357 (continue, signal 0, stop not expected)
361.829595     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.357
361.829863     [threads] proceed_one_lwp: lwp 358
361.830181     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.830453     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.830707     [threads] resume_one_lwp_throw: Resuming lwp 358 (continue, signal 0, stop not expected)
361.831253     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.358
361.831534     [threads] proceed_one_lwp: lwp 359
361.831808     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.832069     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.832309     [threads] resume_one_lwp_throw: Resuming lwp 359 (continue, signal 0, stop not expected)
361.832704     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.359
361.832976     [threads] proceed_one_lwp: lwp 360
361.833117     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.833365     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.833619     [threads] resume_one_lwp_throw: Resuming lwp 360 (continue, signal 0, stop not expected)
361.834159     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.360
361.834552     [threads] proceed_one_lwp: lwp 361
361.834818     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.835075     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.835417     [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
361.835892     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
361.836143     [threads] proceed_one_lwp: lwp 364
361.836370     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.836583     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.836884     [threads] resume_one_lwp_throw: Resuming lwp 364 (continue, signal 0, stop not expected)
361.837271     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.364
361.837511     [threads] proceed_one_lwp: lwp 365
361.837741     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.837952     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.838161     [threads] resume_one_lwp_throw: Resuming lwp 365 (continue, signal 0, stop not expected)
361.838530     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.365
361.838868     [threads] proceed_one_lwp: lwp 366
361.839097     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.839309     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.839519     [threads] resume_one_lwp_throw: Resuming lwp 366 (continue, signal 0, stop not expected)
361.839871     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.366
361.840232     [threads] proceed_one_lwp: lwp 367
361.840510     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.840731     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.841097     [threads] resume_one_lwp_throw: Resuming lwp 367 (continue, signal 0, stop not expected)
361.841566     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.367
361.841962     [threads] proceed_one_lwp: lwp 368
361.842247     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.842511     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.842749     [threads] resume_one_lwp_throw: Resuming lwp 368 (continue, signal 0, stop not expected)
361.843154     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.368
361.843521     [threads] proceed_one_lwp: lwp 369
361.843741     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.843994     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.844252     [threads] resume_one_lwp_throw: Resuming lwp 369 (continue, signal 0, stop not expected)
361.844813     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.369
361.845071     [threads] proceed_one_lwp: lwp 370
361.845348     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.845710     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.846036     [threads] resume_one_lwp_throw: Resuming lwp 370 (continue, signal 0, stop not expected)
361.846499     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.370
361.846792     [threads] proceed_one_lwp: lwp 371
361.847195     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.847436     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.847687     [threads] resume_one_lwp_throw: Resuming lwp 371 (continue, signal 0, stop not expected)
361.848251     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.371
361.848547     [threads] proceed_one_lwp: lwp 372
361.848821     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.849079     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.849320     [threads] resume_one_lwp_throw: Resuming lwp 372 (continue, signal 0, stop not expected)
361.849698     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.372
361.849982     [threads] proceed_one_lwp: lwp 373
361.850531     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.850794     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.851034     [threads] resume_one_lwp_throw: Resuming lwp 373 (continue, signal 0, stop not expected)
361.851488     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.373
361.851777     [threads] proceed_one_lwp: lwp 374
361.852035     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.852294     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.852545     [threads] resume_one_lwp_throw: Resuming lwp 374 (continue, signal 0, stop not expected)
361.852927     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.374
361.853195     [threads] proceed_one_lwp: lwp 375
361.853775     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.854044     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.854269     [threads] resume_one_lwp_throw: Resuming lwp 375 (continue, signal 0, stop not expected)
361.854897     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.375
361.855168     [threads] proceed_one_lwp: lwp 376
361.855447     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.855793     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.856141     [threads] resume_one_lwp_throw: Resuming lwp 376 (continue, signal 0, stop not expected)
361.856610     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.376
361.856904     [threads] proceed_one_lwp: lwp 377
361.857241     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.857500     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.857861     [threads] resume_one_lwp_throw: Resuming lwp 377 (continue, signal 0, stop not expected)
361.858266     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.377
361.858761     [threads] proceed_one_lwp: lwp 378
361.859034     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.859274     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.859525     [threads] resume_one_lwp_throw: Resuming lwp 378 (continue, signal 0, stop not expected)
361.859999     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.378
361.860397     [threads] proceed_one_lwp: lwp 379
361.860654     [threads] proceed_one_lwp:    LWP 379 has pending status, leaving stopped
361.860904     [threads] proceed_one_lwp: lwp 380
361.861173     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.861431     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.861679     [threads] resume_one_lwp_throw: Resuming lwp 380 (continue, signal 0, stop not expected)
361.862179     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.380
361.862536     [threads] proceed_one_lwp: lwp 381
361.862795     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
361.863056     [threads] resume_one_lwp_throw:   continue from pc 0x4e9f6646
361.863306     [threads] resume_one_lwp_throw: Resuming lwp 381 (continue, signal 0, stop not expected)
361.863865     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.381
361.864174     [threads] proceed_one_lwp: lwp 382
361.864608     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.864972     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.865230     [threads] resume_one_lwp_throw: Resuming lwp 382 (continue, signal 0, stop not expected)
361.865680     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.382
361.866046     [threads] proceed_one_lwp: lwp 383
361.866306     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.866561     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.866795     [threads] resume_one_lwp_throw: Resuming lwp 383 (continue, signal 0, stop not expected)
361.867266     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.383
361.867570     [threads] proceed_one_lwp: lwp 384
361.867861     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.868081     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.868330     [threads] resume_one_lwp_throw: Resuming lwp 384 (continue, signal 0, stop not expected)
361.868722     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.384
361.869116     [threads] proceed_one_lwp: lwp 385
361.869475     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.869735     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.869971     [threads] resume_one_lwp_throw: Resuming lwp 385 (continue, signal 0, stop not expected)
361.870551     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.385
361.870913     [threads] proceed_one_lwp: lwp 386
361.871188     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.871432     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.871688     [threads] resume_one_lwp_throw: Resuming lwp 386 (continue, signal 0, stop not expected)
361.872277     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.386
361.872559     [threads] proceed_one_lwp: lwp 387
361.872811     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.873070     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.873440     [threads] resume_one_lwp_throw: Resuming lwp 387 (continue, signal 0, stop not expected)
361.873961     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.387
361.874265     [threads] proceed_one_lwp: lwp 388
361.874525     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.874784     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.875027     [threads] resume_one_lwp_throw: Resuming lwp 388 (continue, signal 0, stop not expected)
361.875424     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.388
361.875697     [threads] proceed_one_lwp: lwp 389
361.876079     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.876342     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.876748     [threads] resume_one_lwp_throw: Resuming lwp 389 (continue, signal 0, stop not expected)
361.877203     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.389
361.877478     [threads] proceed_one_lwp: lwp 390
361.877754     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.878010     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.878247     [threads] resume_one_lwp_throw: Resuming lwp 390 (continue, signal 0, stop not expected)
361.878638     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.390
361.878861     [threads] proceed_one_lwp: lwp 391
361.879134     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.879377     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.879636     [threads] resume_one_lwp_throw: Resuming lwp 391 (continue, signal 0, stop not expected)
361.880155     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.391
361.880450     [threads] proceed_one_lwp: lwp 392
361.880714     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.880975     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.881228     [threads] resume_one_lwp_throw: Resuming lwp 392 (continue, signal 0, stop not expected)
361.882034     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.392
361.882313     [threads] proceed_one_lwp: lwp 393
361.882666     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.882933     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.883280     [threads] resume_one_lwp_throw: Resuming lwp 393 (continue, signal 0, stop not expected)
361.883768     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.393
361.884060     [threads] proceed_one_lwp: lwp 394
361.884331     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.884681     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.885030     [threads] resume_one_lwp_throw: Resuming lwp 394 (continue, signal 0, stop not expected)
361.885430     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.394
361.885809     [threads] proceed_one_lwp: lwp 395
361.886092     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.886528     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.886787     [threads] resume_one_lwp_throw: Resuming lwp 395 (continue, signal 0, stop not expected)
361.887193     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.395
361.887777     [threads] proceed_one_lwp: lwp 396
361.888051     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.888309     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.888549     [threads] resume_one_lwp_throw: Resuming lwp 396 (continue, signal 0, stop not expected)
361.888964     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.396
361.889435     [threads] proceed_one_lwp: lwp 397
361.889728     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.889981     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.890254     [threads] resume_one_lwp_throw: Resuming lwp 397 (continue, signal 0, stop not expected)
361.890916     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.397
361.891157     [threads] proceed_one_lwp: lwp 398
361.891387     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.891737     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.891948     [threads] resume_one_lwp_throw: Resuming lwp 398 (continue, signal 0, stop not expected)
361.892284     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.398
361.892543     [threads] proceed_one_lwp: lwp 399
361.892769     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
361.892980     [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
361.893190     [threads] resume_one_lwp_throw: Resuming lwp 399 (continue, signal 0, stop not expected)
361.893527     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.399
361.893765     [threads] proceed_one_lwp: lwp 400
361.893990     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.894204     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.894422     [threads] resume_one_lwp_throw: Resuming lwp 400 (continue, signal 0, stop not expected)
361.894758     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.400
361.895030     [threads] proceed_one_lwp: lwp 401
361.895281     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.895565     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.895786     [threads] resume_one_lwp_throw: Resuming lwp 401 (continue, signal 0, stop not expected)
361.896307     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.401
361.896581     [threads] proceed_one_lwp: lwp 403
361.896867     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.897127     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.897367     [threads] resume_one_lwp_throw: Resuming lwp 403 (continue, signal 0, stop not expected)
361.897950     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.403
361.898221     [threads] proceed_one_lwp: lwp 404
361.898690     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.899049     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.899311     [threads] resume_one_lwp_throw: Resuming lwp 404 (continue, signal 0, stop not expected)
361.899798     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.404
361.900139     [threads] proceed_one_lwp: lwp 405
361.900520     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.900775     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.901029     [threads] resume_one_lwp_throw: Resuming lwp 405 (continue, signal 0, stop not expected)
361.901410     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.405
361.901769     [threads] proceed_one_lwp: lwp 406
361.902029     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.902290     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.902640     [threads] resume_one_lwp_throw: Resuming lwp 406 (continue, signal 0, stop not expected)
361.903156     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.406
361.903407     [threads] proceed_one_lwp: lwp 407
361.903682     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.904047     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.904299     [threads] resume_one_lwp_throw: Resuming lwp 407 (continue, signal 0, stop not expected)
361.904746     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.407
361.905032     [threads] proceed_one_lwp: lwp 408
361.905289     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.905543     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.905780     [threads] resume_one_lwp_throw: Resuming lwp 408 (continue, signal 0, stop not expected)
361.906428     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.408
361.906704     [threads] proceed_one_lwp: lwp 409
361.906982     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.907240     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.907567     [threads] resume_one_lwp_throw: Resuming lwp 409 (continue, signal 0, stop not expected)
361.907988     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.409
361.908352     [threads] proceed_one_lwp: lwp 410
361.908565     [threads] proceed_one_lwp:    LWP 410 has pending status, leaving stopped
361.908780     [threads] proceed_one_lwp: lwp 412
361.909000     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.909329     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.909643     [threads] resume_one_lwp_throw: Resuming lwp 412 (continue, signal 0, stop not expected)
361.909976     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.412
361.910284     [threads] proceed_one_lwp: lwp 414
361.910512     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.910721     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.910929     [threads] resume_one_lwp_throw: Resuming lwp 414 (continue, signal 0, stop not expected)
361.911260     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.414
361.911500     [threads] proceed_one_lwp: lwp 433
361.911722     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.911933     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.912143     [threads] resume_one_lwp_throw: Resuming lwp 433 (continue, signal 0, stop not expected)
361.912467     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.433
361.912702     [threads] proceed_one_lwp: lwp 436
361.912922     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.913133     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.913345     [threads] resume_one_lwp_throw: Resuming lwp 436 (continue, signal 0, stop not expected)
361.913719     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.436
361.913956     [threads] proceed_one_lwp: lwp 437
361.914178     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.914394     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.914601     [threads] resume_one_lwp_throw: Resuming lwp 437 (continue, signal 0, stop not expected)
361.914967     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.437
361.915206     [threads] proceed_one_lwp: lwp 483
361.915432     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.915642     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.915849     [threads] resume_one_lwp_throw: Resuming lwp 483 (continue, signal 0, stop not expected)
361.916178     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.483
361.916449     [threads] proceed_one_lwp: lwp 484
361.916672     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.916883     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.917091     [threads] resume_one_lwp_throw: Resuming lwp 484 (continue, signal 0, stop not expected)
361.917415     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.484
361.917657     [threads] proceed_one_lwp: lwp 493
361.917876     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.918087     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.918294     [threads] resume_one_lwp_throw: Resuming lwp 493 (continue, signal 0, stop not expected)
361.918622     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.493
361.918854     [threads] proceed_one_lwp: lwp 508
361.919075     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.919285     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.919491     [threads] resume_one_lwp_throw: Resuming lwp 508 (continue, signal 0, stop not expected)
361.919811     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.508
361.920138     [threads] proceed_one_lwp: lwp 613
361.920359     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.920566     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.920766     [threads] resume_one_lwp_throw: Resuming lwp 613 (continue, signal 0, stop not expected)
361.921131     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.613
361.921362     [threads] proceed_one_lwp: lwp 624
361.921578     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.921802     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.922004     [threads] resume_one_lwp_throw: Resuming lwp 624 (continue, signal 0, stop not expected)
361.922330     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.624
361.922597     [threads] proceed_one_lwp: lwp 655
361.922820     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.923023     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.923223     [threads] resume_one_lwp_throw: Resuming lwp 655 (continue, signal 0, stop not expected)
361.923583     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.655
361.923818     [threads] proceed_one_lwp: lwp 660
361.924035     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.924236     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.924436     [threads] resume_one_lwp_throw: Resuming lwp 660 (continue, signal 0, stop not expected)
361.924756     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.660
361.924986     [threads] proceed_one_lwp: lwp 661
361.925197     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.925398     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.925596     [threads] resume_one_lwp_throw: Resuming lwp 661 (continue, signal 0, stop not expected)
361.925912     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.661
361.926138     [threads] proceed_one_lwp: lwp 1074
361.926349     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.926552     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.926751     [threads] resume_one_lwp_throw: Resuming lwp 1074 (continue, signal 0, stop not expected)
361.927074     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1074
361.927347     [threads] proceed_one_lwp: lwp 1118
361.927561     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.927765     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.927971     [threads] resume_one_lwp_throw: Resuming lwp 1118 (continue, signal 0, stop not expected)
361.928523     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1118
361.928780     [threads] proceed_one_lwp: lwp 1293
361.929010     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.929223     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
361.929432     [threads] resume_one_lwp_throw: Resuming lwp 1293 (continue, signal 0, stop not expected)
361.929766     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.1293
361.930073     [threads] proceed_one_lwp: lwp 3027
361.930318     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.930568     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.930863     [threads] resume_one_lwp_throw: Resuming lwp 3027 (continue, signal 0, stop not expected)
361.931271     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3027
361.931778     [threads] proceed_one_lwp: lwp 3028
361.932011     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.932229     [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
361.932437     [threads] resume_one_lwp_throw: Resuming lwp 3028 (continue, signal 0, stop not expected)
361.933048     [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.3028
361.933313     [threads] proceed_one_lwp: lwp 3032
361.933523     [threads] proceed_one_lwp:    client wants LWP to remain 3032 stopped
361.933736     [threads] proceed_one_lwp: lwp 3031
361.933944     [threads] proceed_one_lwp:    client wants LWP to remain 3031 stopped
361.934154   [threads] unstop_all_lwps: exit
361.934459   [threads] stop_all_lwps: enter
361.934676     [threads] stop_all_lwps: stop, except=none
361.934885     [threads] send_sigstop: Sending sigstop to lwp 349
sigchld_handler
361.935342     [threads] send_sigstop: Sending sigstop to lwp 350
sigchld_handler
361.935766     [threads] send_sigstop: Sending sigstop to lwp 351
sigchld_handler
361.936168     [threads] send_sigstop: Sending sigstop to lwp 352
sigchld_handler
361.936571     [threads] send_sigstop: Sending sigstop to lwp 357
361.936818 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 358
sigchld_handler
361.937409     [threads] send_sigstop: Sending sigstop to lwp 359
361.937794 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 360
361.938172 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 361
361.938566     [threads] send_sigstop: Sending sigstop to lwp 364
sigchld_handler
361.938975     [threads] send_sigstop: Sending sigstop to lwp 365
sigchld_handler
361.939382     [threads] send_sigstop: Sending sigstop to lwp 366
361.939632 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 367
sigchld_handler
361.940356     [threads] send_sigstop: Sending sigstop to lwp 368
361.940615 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 369
361.940959 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 370
sigchld_handler
361.941451     [threads] send_sigstop: Sending sigstop to lwp 371
sigchld_handler
361.941853     [threads] send_sigstop: Sending sigstop to lwp 372
361.942097 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 373
sigchld_handler
361.942691     [threads] send_sigstop: Sending sigstop to lwp 374
361.942995 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 375
sigchld_handler
361.943662     [threads] send_sigstop: Sending sigstop to lwp 376
sigchld_handler
361.944071     [threads] send_sigstop: Sending sigstop to lwp 377
361.944319 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 378
361.944669 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 380
361.945087 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 381
sigchld_handler
361.945919     [threads] send_sigstop: Sending sigstop to lwp 382
361.946174 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 383
361.946521 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 384
361.946867 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 385
361.947208 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 386
361.947553 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 387
sigchld_handler
361.948058     [threads] send_sigstop: Sending sigstop to lwp 388
361.948305 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 389
sigchld_handler
361.948810     [threads] send_sigstop: Sending sigstop to lwp 390
361.949060 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 391
sigchld_handler
361.949574     [threads] send_sigstop: Sending sigstop to lwp 392
sigchld_handler
361.949992     [threads] send_sigstop: Sending sigstop to lwp 393
361.951008     [threads] send_sigstop: Sending sigstop to lwp 394
361.951264 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 395
361.951802 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 396
361.952177 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 397
361.952578 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 398
361.952925 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 399
361.953308 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 400
361.953725 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 401
361.954072 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 403
sigchld_handler
361.954581     [threads] send_sigstop: Sending sigstop to lwp 404
sigchld_handler
361.955124     [threads] send_sigstop: Sending sigstop to lwp 405
361.955388 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 406
361.955782 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 407
sigchld_handler
361.956365     [threads] send_sigstop: Sending sigstop to lwp 408
sigchld_handler
361.956877     [threads] send_sigstop: Sending sigstop to lwp 409
361.957174     [threads] send_sigstop: Sending sigstop to lwp 412
361.957473 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 414
361.957973 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 433
361.958537 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 436
sigchld_handler
361.959147     [threads] send_sigstop: Sending sigstop to lwp 437
sigchld_handler
361.959747     [threads] send_sigstop: Sending sigstop to lwp 483
361.960106 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 484
361.960747 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 493
361.961112     [threads] send_sigstop: Sending sigstop to lwp 508
361.961422 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 613
sigchld_handler
361.962104     [threads] send_sigstop: Sending sigstop to lwp 624
361.962387 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 655
sigchld_handler
361.963168     [threads] send_sigstop: Sending sigstop to lwp 660
361.963465 sigchld_handler
sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 661
361.963976 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1074
361.964400 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1118
361.964889 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 1293
361.965288 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 3027
361.965686 sigchld_handler
    [threads] send_sigstop: Sending sigstop to lwp 3028
sigchld_handler
361.966332     [threads] wait_for_sigstop: pulling events
361.966615     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3028, ERRNO-OK
361.966921     [threads] wait_for_event_filtered: waitpid 3028 received SIGSTOP - Stopped (signal) (stopped)
361.967392     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.967654     [threads] get_pc: pc is 0x4e97c216
361.967916     [threads] filter_event: Expected stop.
361.968169     [threads] filter_event: SIGSTOP caught for LWP 316.3028 while stopping threads.
361.968439     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 3027, ERRNO-OK
361.968722     [threads] wait_for_event_filtered: waitpid 3027 received SIGSTOP - Stopped (signal) (stopped)
361.969164     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.969420     [threads] get_pc: pc is 0x4e97c216
361.969676     [threads] filter_event: Expected stop.
361.969942     [threads] filter_event: SIGSTOP caught for LWP 316.3027 while stopping threads.
361.970279     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1293, ERRNO-OK
361.970558     [threads] wait_for_event_filtered: waitpid 1293 received SIGSTOP - Stopped (signal) (stopped)
361.971000     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.971284     [threads] get_pc: pc is 0x4e97c214
361.971542     [threads] filter_event: Expected stop.
361.971793     [threads] filter_event: SIGSTOP caught for LWP 316.1293 while stopping threads.
361.972065     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1118, ERRNO-OK
361.972342     [threads] wait_for_event_filtered: waitpid 1118 received SIGSTOP - Stopped (signal) (stopped)
361.972760     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.973039     [threads] get_pc: pc is 0x4e97c214
361.973296     [threads] filter_event: Expected stop.
361.973546     [threads] filter_event: SIGSTOP caught for LWP 316.1118 while stopping threads.
361.973817     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 1074, ERRNO-OK
361.974099     [threads] wait_for_event_filtered: waitpid 1074 received SIGSTOP - Stopped (signal) (stopped)
361.974690     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.975280     [threads] get_pc: pc is 0x4e97c214
361.975531     [threads] filter_event: Expected stop.
361.975797     [threads] filter_event: SIGSTOP caught for LWP 316.1074 while stopping threads.
361.976071     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 661, ERRNO-OK
361.976358     [threads] wait_for_event_filtered: waitpid 661 received SIGSTOP - Stopped (signal) (stopped)
361.976786     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.976986     [threads] get_pc: pc is 0x4e97c216
361.977232     [threads] filter_event: Expected stop.
361.977497     [threads] filter_event: SIGSTOP caught for LWP 316.661 while stopping threads.
361.977773     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 660, ERRNO-OK
361.978052     [threads] wait_for_event_filtered: waitpid 660 received SIGSTOP - Stopped (signal) (stopped)
361.978482     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.978736     [threads] get_pc: pc is 0x4e97c216
361.978989     [threads] filter_event: Expected stop.
361.979337     [threads] filter_event: SIGSTOP caught for LWP 316.660 while stopping threads.
361.979597     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 655, ERRNO-OK
361.979949     [threads] wait_for_event_filtered: waitpid 655 received SIGSTOP - Stopped (signal) (stopped)
361.980677     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.980950     [threads] get_pc: pc is 0x4e97c214
361.981323     [threads] filter_event: Expected stop.
361.981682     [threads] filter_event: SIGSTOP caught for LWP 316.655 while stopping threads.
361.981966     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 624, ERRNO-OK
361.982258     [threads] wait_for_event_filtered: waitpid 624 received SIGSTOP - Stopped (signal) (stopped)
361.982775     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.983146     [threads] get_pc: pc is 0x4e97c214
361.983392     [threads] filter_event: Expected stop.
361.983664     [threads] filter_event: SIGSTOP caught for LWP 316.624 while stopping threads.
361.984003     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 613, ERRNO-OK
361.984295     [threads] wait_for_event_filtered: waitpid 613 received SIGSTOP - Stopped (signal) (stopped)
361.984733     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.984987     [threads] get_pc: pc is 0x4e97c216
361.985265     [threads] filter_event: Expected stop.
361.985649     [threads] filter_event: SIGSTOP caught for LWP 316.613 while stopping threads.
361.986053     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 508, ERRNO-OK
361.986342     [threads] wait_for_event_filtered: waitpid 508 received SIGSTOP - Stopped (signal) (stopped)
361.987116     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.987515     [threads] get_pc: pc is 0x4e97c216
361.987761     [threads] filter_event: Expected stop.
361.988028     [threads] filter_event: SIGSTOP caught for LWP 316.508 while stopping threads.
361.988307     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 493, ERRNO-OK
361.988754     [threads] wait_for_event_filtered: waitpid 493 received SIGSTOP - Stopped (signal) (stopped)
361.989185     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.989466     [threads] get_pc: pc is 0x4e97c214
361.989722     [threads] filter_event: Expected stop.
361.990115     [threads] filter_event: SIGSTOP caught for LWP 316.493 while stopping threads.
361.990393     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 484, ERRNO-OK
361.990930     [threads] wait_for_event_filtered: waitpid 484 received SIGSTOP - Stopped (signal) (stopped)
361.991369     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.991639     [threads] get_pc: pc is 0x4e97c216
361.991883     [threads] filter_event: Expected stop.
361.992149     [threads] filter_event: SIGSTOP caught for LWP 316.484 while stopping threads.
361.992601     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 483, ERRNO-OK
361.992894     [threads] wait_for_event_filtered: waitpid 483 received SIGSTOP - Stopped (signal) (stopped)
361.993412     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.993808     [threads] get_pc: pc is 0x4e97c216
361.994070     [threads] filter_event: Expected stop.
361.994316     [threads] filter_event: SIGSTOP caught for LWP 316.483 while stopping threads.
361.994688     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 437, ERRNO-OK
361.995077     [threads] wait_for_event_filtered: waitpid 437 received SIGSTOP - Stopped (signal) (stopped)
361.995502     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.995779     [threads] get_pc: pc is 0x4e97c216
361.996109     [threads] filter_event: Expected stop.
361.996485     [threads] filter_event: SIGSTOP caught for LWP 316.437 while stopping threads.
361.996775     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 436, ERRNO-OK
361.997211     [threads] wait_for_event_filtered: waitpid 436 received SIGSTOP - Stopped (signal) (stopped)
361.997651     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
361.997903     [threads] get_pc: pc is 0x4e97c214
361.998271     [threads] filter_event: Expected stop.
361.998521     [threads] filter_event: SIGSTOP caught for LWP 316.436 while stopping threads.
361.998980     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 433, ERRNO-OK
361.999272     [threads] wait_for_event_filtered: waitpid 433 received SIGSTOP - Stopped (signal) (stopped)
361.999700     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
361.999968     [threads] get_pc: pc is 0x4e97c216
362.000256     [threads] filter_event: Expected stop.
362.000786     [threads] filter_event: SIGSTOP caught for LWP 316.433 while stopping threads.
362.001045     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 414, ERRNO-OK
362.001307     [threads] wait_for_event_filtered: waitpid 414 received SIGSTOP - Stopped (signal) (stopped)
362.001806     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.002151     [threads] get_pc: pc is 0x4e97c216
362.002371     [threads] filter_event: Expected stop.
362.002593     [threads] filter_event: SIGSTOP caught for LWP 316.414 while stopping threads.
362.002962     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 412, ERRNO-OK
362.003211     [threads] wait_for_event_filtered: waitpid 412 received SIGSTOP - Stopped (signal) (stopped)
362.003582     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.003818     [threads] get_pc: pc is 0x4e97c216
362.004032     [threads] filter_event: Expected stop.
362.004253     [threads] filter_event: SIGSTOP caught for LWP 316.412 while stopping threads.
362.004506     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 409, ERRNO-OK
362.004750     [threads] wait_for_event_filtered: waitpid 409 received SIGSTOP - Stopped (signal) (stopped)
362.005193     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.005437     [threads] get_pc: pc is 0x4e97c216
362.005784     [threads] filter_event: Expected stop.
362.006055     [threads] filter_event: SIGSTOP caught for LWP 316.409 while stopping threads.
362.006351     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 408, ERRNO-OK
362.006759     [threads] wait_for_event_filtered: waitpid 408 received SIGSTOP - Stopped (signal) (stopped)
362.007190     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.007467     [threads] get_pc: pc is 0x4e97c216
362.007742     [threads] filter_event: Expected stop.
362.008196     [threads] filter_event: SIGSTOP caught for LWP 316.408 while stopping threads.
362.008493     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 407, ERRNO-OK
362.008783     [threads] wait_for_event_filtered: waitpid 407 received SIGSTOP - Stopped (signal) (stopped)
362.009254     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.009544     [threads] get_pc: pc is 0x4e97c214
362.009791     [threads] filter_event: Expected stop.
362.010257     [threads] filter_event: SIGSTOP caught for LWP 316.407 while stopping threads.
362.010635     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 406, ERRNO-OK
362.010932     [threads] wait_for_event_filtered: waitpid 406 received SIGSTOP - Stopped (signal) (stopped)
362.011436     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.011722     [threads] get_pc: pc is 0x4e97c216
362.012065     [threads] filter_event: Expected stop.
362.012440     [threads] filter_event: SIGSTOP caught for LWP 316.406 while stopping threads.
362.012736     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 405, ERRNO-OK
362.013026     [threads] wait_for_event_filtered: waitpid 405 received SIGSTOP - Stopped (signal) (stopped)
362.013537     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.013894     [threads] get_pc: pc is 0x4e97c216
362.014158     [threads] filter_event: Expected stop.
362.014421     [threads] filter_event: SIGSTOP caught for LWP 316.405 while stopping threads.
362.014793     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 404, ERRNO-OK
362.015157     [threads] wait_for_event_filtered: waitpid 404 received SIGSTOP - Stopped (signal) (stopped)
362.015586     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.015936     [threads] get_pc: pc is 0x4e97c216
362.016208     [threads] filter_event: Expected stop.
362.016472     [threads] filter_event: SIGSTOP caught for LWP 316.404 while stopping threads.
362.016768     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 403, ERRNO-OK
362.017060     [threads] wait_for_event_filtered: waitpid 403 received SIGSTOP - Stopped (signal) (stopped)
362.017478     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.017731     [threads] get_pc: pc is 0x4e97c216
362.017985     [threads] filter_event: Expected stop.
362.018250     [threads] filter_event: SIGSTOP caught for LWP 316.403 while stopping threads.
362.018540     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 401, ERRNO-OK
362.018804     [threads] wait_for_event_filtered: waitpid 401 received SIGSTOP - Stopped (signal) (stopped)
362.019218     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.019481     [threads] get_pc: pc is 0x4e97c216
362.019733     [threads] filter_event: Expected stop.
362.019994     [threads] filter_event: SIGSTOP caught for LWP 316.401 while stopping threads.
362.020334     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 400, ERRNO-OK
362.020621     [threads] wait_for_event_filtered: waitpid 400 received SIGSTOP - Stopped (signal) (stopped)
362.021039     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.021299     [threads] get_pc: pc is 0x4e97c214
362.021865     [threads] filter_event: Expected stop.
362.022238     [threads] filter_event: SIGSTOP caught for LWP 316.400 while stopping threads.
362.022539     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 399, ERRNO-OK
362.022825     [threads] wait_for_event_filtered: waitpid 399 received SIGSTOP - Stopped (signal) (stopped)
362.023341     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
362.023630     [threads] get_pc: pc is 0x4eb53d34
362.023955     [threads] filter_event: Expected stop.
362.024209     [threads] filter_event: SIGSTOP caught for LWP 316.399 while stopping threads.
362.024511     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 398, ERRNO-OK
362.024797     [threads] wait_for_event_filtered: waitpid 398 received SIGSTOP - Stopped (signal) (stopped)
362.025219     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.025481     [threads] get_pc: pc is 0x4e97c216
362.025737     [threads] filter_event: Expected stop.
362.026135     [threads] filter_event: SIGSTOP caught for LWP 316.398 while stopping threads.
362.026447     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 397, ERRNO-OK
362.026738     [threads] wait_for_event_filtered: waitpid 397 received SIGSTOP - Stopped (signal) (stopped)
362.027160     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.027549     [threads] get_pc: pc is 0x4e97c216
362.027810     [threads] filter_event: Expected stop.
362.028075     [threads] filter_event: SIGSTOP caught for LWP 316.397 while stopping threads.
362.028378     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 396, ERRNO-OK
362.028654     [threads] wait_for_event_filtered: waitpid 396 received SIGSTOP - Stopped (signal) (stopped)
362.029346     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
362.029611     [threads] get_pc: pc is 0x4eb53d34
362.029866     [threads] filter_event: Expected stop.
362.030181     [threads] filter_event: SIGSTOP caught for LWP 316.396 while stopping threads.
362.030595     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 395, ERRNO-OK
362.030896     [threads] wait_for_event_filtered: waitpid 395 received SIGSTOP - Stopped (signal) (stopped)
362.031467     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.031801     [threads] get_pc: pc is 0x4e97c216
362.032055     [threads] filter_event: Expected stop.
362.032322     [threads] filter_event: SIGSTOP caught for LWP 316.395 while stopping threads.
362.032622     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 394, ERRNO-OK
362.033019     [threads] wait_for_event_filtered: waitpid 394 received SIGSTOP - Stopped (signal) (stopped)
362.033537     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.033801     [threads] get_pc: pc is 0x4e97c216
362.034120     [threads] filter_event: Expected stop.
362.034510     [threads] filter_event: SIGSTOP caught for LWP 316.394 while stopping threads.
362.034819     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 393, ERRNO-OK
362.035095     [threads] wait_for_event_filtered: waitpid 393 received SIGSTOP - Stopped (signal) (stopped)
362.035575     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
362.035962     [threads] get_pc: pc is 0x4eb53d34
362.036234     [threads] filter_event: Expected stop.
362.036486     [threads] filter_event: SIGSTOP caught for LWP 316.393 while stopping threads.
362.036902     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 392, ERRNO-OK
362.037185     [threads] wait_for_event_filtered: waitpid 392 received SIGSTOP - Stopped (signal) (stopped)
362.037769     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.038036     [threads] get_pc: pc is 0x4e97c216
362.038293     [threads] filter_event: Expected stop.
362.038555     [threads] filter_event: SIGSTOP caught for LWP 316.392 while stopping threads.
362.038853     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 391, ERRNO-OK
362.039246     [threads] wait_for_event_filtered: waitpid 391 received SIGSTOP - Stopped (signal) (stopped)
362.039642     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.040099     [threads] get_pc: pc is 0x4e97c216
362.040453     [threads] filter_event: Expected stop.
362.040723     [threads] filter_event: SIGSTOP caught for LWP 316.391 while stopping threads.
362.041025     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 390, ERRNO-OK
362.041311     [threads] wait_for_event_filtered: waitpid 390 received SIGSTOP - Stopped (signal) (stopped)
362.041847     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.042110     [threads] get_pc: pc is 0x4e97c216
362.042373     [threads] filter_event: Expected stop.
362.042635     [threads] filter_event: SIGSTOP caught for LWP 316.390 while stopping threads.
362.042935     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 389, ERRNO-OK
362.043222     [threads] wait_for_event_filtered: waitpid 389 received SIGSTOP - Stopped (signal) (stopped)
362.043619     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.043960     [threads] get_pc: pc is 0x4e97c216
362.044308     [threads] filter_event: Expected stop.
362.044582     [threads] filter_event: SIGSTOP caught for LWP 316.389 while stopping threads.
362.044884     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 388, ERRNO-OK
362.045170     [threads] wait_for_event_filtered: waitpid 388 received SIGSTOP - Stopped (signal) (stopped)
362.045726     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.046007     [threads] get_pc: pc is 0x4e97c216
362.046246     [threads] filter_event: Expected stop.
362.046515     [threads] filter_event: SIGSTOP caught for LWP 316.388 while stopping threads.
362.046884     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 387, ERRNO-OK
362.047178     [threads] wait_for_event_filtered: waitpid 387 received SIGSTOP - Stopped (signal) (stopped)
362.047591     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.047949     [threads] get_pc: pc is 0x4e97c216
362.048324     [threads] filter_event: Expected stop.
362.048580     [threads] filter_event: SIGSTOP caught for LWP 316.387 while stopping threads.
362.048901     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 386, ERRNO-OK
362.049275     [threads] wait_for_event_filtered: waitpid 386 received SIGSTOP - Stopped (signal) (stopped)
362.049674     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.049943     [threads] get_pc: pc is 0x4e97c216
362.050503     [threads] filter_event: Expected stop.
362.050763     [threads] filter_event: SIGSTOP caught for LWP 316.386 while stopping threads.
362.051073     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 385, ERRNO-OK
362.051357     [threads] wait_for_event_filtered: waitpid 385 received SIGSTOP - Stopped (signal) (stopped)
362.051907     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.052166     [threads] get_pc: pc is 0x4e97c216
362.052430     [threads] filter_event: Expected stop.
362.052700     [threads] filter_event: SIGSTOP caught for LWP 316.385 while stopping threads.
362.053237     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 384, ERRNO-OK
362.053531     [threads] wait_for_event_filtered: waitpid 384 received SIGSTOP - Stopped (signal) (stopped)
362.053943     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.054305     [threads] get_pc: pc is 0x4e97c216
362.054575     [threads] filter_event: Expected stop.
362.054831     [threads] filter_event: SIGSTOP caught for LWP 316.384 while stopping threads.
362.055115     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 383, ERRNO-OK
362.055361     [threads] wait_for_event_filtered: waitpid 383 received SIGSTOP - Stopped (signal) (stopped)
362.056013     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.056239     [threads] get_pc: pc is 0x4e97c214
362.056449     [threads] filter_event: Expected stop.
362.056665     [threads] filter_event: SIGSTOP caught for LWP 316.383 while stopping threads.
362.056931     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 382, ERRNO-OK
362.057325     [threads] wait_for_event_filtered: waitpid 382 received SIGSTOP - Stopped (signal) (stopped)
362.057669     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.057897     [threads] get_pc: pc is 0x4e97c216
362.058107     [threads] filter_event: Expected stop.
362.058326     [threads] filter_event: SIGSTOP caught for LWP 316.382 while stopping threads.
362.058591     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 381, ERRNO-OK
362.058830     [threads] wait_for_event_filtered: waitpid 381 received SIGSTOP - Stopped (signal) (stopped)
362.059173     [threads] linux_get_pc_32bit: stop pc is 0x4e9f6646
362.059443     [threads] get_pc: pc is 0x4e9f6646
362.059675     [threads] filter_event: Expected stop.
362.060066     [threads] filter_event: SIGSTOP caught for LWP 316.381 while stopping threads.
362.060408     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 380, ERRNO-OK
362.060704     [threads] wait_for_event_filtered: waitpid 380 received SIGSTOP - Stopped (signal) (stopped)
362.061096     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.061372     [threads] get_pc: pc is 0x4e97c214
362.061626     [threads] filter_event: Expected stop.
362.062064     [threads] filter_event: SIGSTOP caught for LWP 316.380 while stopping threads.
362.062401     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 378, ERRNO-OK
362.062801     [threads] wait_for_event_filtered: waitpid 378 received SIGSTOP - Stopped (signal) (stopped)
362.063241     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.063502     [threads] get_pc: pc is 0x4e97c216
362.063760     [threads] filter_event: Expected stop.
362.064027     [threads] filter_event: SIGSTOP caught for LWP 316.378 while stopping threads.
362.064339     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 377, ERRNO-OK
362.064610     [threads] wait_for_event_filtered: waitpid 377 received SIGSTOP - Stopped (signal) (stopped)
362.065007     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.065261     [threads] get_pc: pc is 0x4e97c216
362.065516     [threads] filter_event: Expected stop.
362.065774     [threads] filter_event: SIGSTOP caught for LWP 316.377 while stopping threads.
362.066081     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 376, ERRNO-OK
362.066370     [threads] wait_for_event_filtered: waitpid 376 received SIGSTOP - Stopped (signal) (stopped)
362.066748     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.067019     [threads] get_pc: pc is 0x4e97c216
362.067260     [threads] filter_event: Expected stop.
362.067524     [threads] filter_event: SIGSTOP caught for LWP 316.376 while stopping threads.
362.067829     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 375, ERRNO-OK
362.068116     [threads] wait_for_event_filtered: waitpid 375 received SIGSTOP - Stopped (signal) (stopped)
362.068508     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.068773     [threads] get_pc: pc is 0x4e97c216
362.069032     [threads] filter_event: Expected stop.
362.069294     [threads] filter_event: SIGSTOP caught for LWP 316.375 while stopping threads.
362.069730     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 374, ERRNO-OK
362.070060     [threads] wait_for_event_filtered: waitpid 374 received SIGSTOP - Stopped (signal) (stopped)
362.070461     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.070944     [threads] get_pc: pc is 0x4e97c214
362.071295     [threads] filter_event: Expected stop.
362.071579     [threads] filter_event: SIGSTOP caught for LWP 316.374 while stopping threads.
362.071897     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 373, ERRNO-OK
362.072189     [threads] wait_for_event_filtered: waitpid 373 received SIGSTOP - Stopped (signal) (stopped)
362.072594     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.072852     [threads] get_pc: pc is 0x4e97c216
362.073106     [threads] filter_event: Expected stop.
362.073441     [threads] filter_event: SIGSTOP caught for LWP 316.373 while stopping threads.
362.073884     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 372, ERRNO-OK
362.074177     [threads] wait_for_event_filtered: waitpid 372 received SIGSTOP - Stopped (signal) (stopped)
362.074583     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.074905     [threads] get_pc: pc is 0x4e97c216
362.075269     [threads] filter_event: Expected stop.
362.075524     [threads] filter_event: SIGSTOP caught for LWP 316.372 while stopping threads.
362.075857     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 371, ERRNO-OK
362.076239     [threads] wait_for_event_filtered: waitpid 371 received SIGSTOP - Stopped (signal) (stopped)
362.076732     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.077012     [threads] get_pc: pc is 0x4e97c214
362.077266     [threads] filter_event: Expected stop.
362.077631     [threads] filter_event: SIGSTOP caught for LWP 316.371 while stopping threads.
362.078022     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 370, ERRNO-OK
362.078323     [threads] wait_for_event_filtered: waitpid 370 received SIGSTOP - Stopped (signal) (stopped)
362.078709     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.079095     [threads] get_pc: pc is 0x4e97c216
362.079419     [threads] filter_event: Expected stop.
362.079668     [threads] filter_event: SIGSTOP caught for LWP 316.370 while stopping threads.
362.080138     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 369, ERRNO-OK
362.080422     [threads] wait_for_event_filtered: waitpid 369 received SIGSTOP - Stopped (signal) (stopped)
362.081045     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.081314     [threads] get_pc: pc is 0x4e97c214
362.081568     [threads] filter_event: Expected stop.
362.081833     [threads] filter_event: SIGSTOP caught for LWP 316.369 while stopping threads.
362.082225     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 368, ERRNO-OK
362.082578     [threads] wait_for_event_filtered: waitpid 368 received SIGSTOP - Stopped (signal) (stopped)
362.083054     [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
362.083334     [threads] get_pc: pc is 0x4eb53d34
362.083588     [threads] filter_event: Expected stop.
362.083834     [threads] filter_event: SIGSTOP caught for LWP 316.368 while stopping threads.
362.084156     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 367, ERRNO-OK
362.084639     [threads] wait_for_event_filtered: waitpid 367 received SIGSTOP - Stopped (signal) (stopped)
362.085021     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.085295     [threads] get_pc: pc is 0x4e97c214
362.085659     [threads] filter_event: Expected stop.
362.085926     [threads] filter_event: SIGSTOP caught for LWP 316.367 while stopping threads.
362.086246     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 366, ERRNO-OK
362.086625     [threads] wait_for_event_filtered: waitpid 366 received SIGSTOP - Stopped (signal) (stopped)
362.087228     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.087612     [threads] get_pc: pc is 0x4e97c216
362.087877     [threads] filter_event: Expected stop.
362.088143     [threads] filter_event: SIGSTOP caught for LWP 316.366 while stopping threads.
362.088601     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 365, ERRNO-OK
362.088899     [threads] wait_for_event_filtered: waitpid 365 received SIGSTOP - Stopped (signal) (stopped)
362.089382     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.089663     [threads] get_pc: pc is 0x4e97c216
362.089918     [threads] filter_event: Expected stop.
362.090213     [threads] filter_event: SIGSTOP caught for LWP 316.365 while stopping threads.
362.090706     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 364, ERRNO-OK
362.091011     [threads] wait_for_event_filtered: waitpid 364 received SIGSTOP - Stopped (signal) (stopped)
362.091411     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.091670     [threads] get_pc: pc is 0x4e97c216
362.091925     [threads] filter_event: Expected stop.
362.092191     [threads] filter_event: SIGSTOP caught for LWP 316.364 while stopping threads.
362.092510     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 361, ERRNO-OK
362.092803     [threads] wait_for_event_filtered: waitpid 361 received SIGSTOP - Stopped (signal) (stopped)
362.093176     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.093692     [threads] get_pc: pc is 0x4e97c214
362.093957     [threads] filter_event: Expected stop.
362.094223     [threads] filter_event: SIGSTOP caught for LWP 316.361 while stopping threads.
362.094544     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 360, ERRNO-OK
362.094843     [threads] wait_for_event_filtered: waitpid 360 received SIGSTOP - Stopped (signal) (stopped)
362.095313     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.095586     [threads] get_pc: pc is 0x4e97c216
362.095834     [threads] filter_event: Expected stop.
362.096098     [threads] filter_event: SIGSTOP caught for LWP 316.360 while stopping threads.
362.096600     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 359, ERRNO-OK
362.096902     [threads] wait_for_event_filtered: waitpid 359 received SIGSTOP - Stopped (signal) (stopped)
362.097299     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.097555     [threads] get_pc: pc is 0x4e97c216
362.097886     [threads] filter_event: Expected stop.
362.098257     [threads] filter_event: SIGSTOP caught for LWP 316.359 while stopping threads.
362.098600     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 358, ERRNO-OK
362.098892     [threads] wait_for_event_filtered: waitpid 358 received SIGSTOP - Stopped (signal) (stopped)
362.099453     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.099728     [threads] get_pc: pc is 0x4e97c216
362.099972     [threads] filter_event: Expected stop.
362.100286     [threads] filter_event: SIGSTOP caught for LWP 316.358 while stopping threads.
362.100618     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 357, ERRNO-OK
362.101011     [threads] wait_for_event_filtered: waitpid 357 received SIGSTOP - Stopped (signal) (stopped)
362.101411     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.101801     [threads] get_pc: pc is 0x4e97c216
362.102052     [threads] filter_event: Expected stop.
362.102316     [threads] filter_event: SIGSTOP caught for LWP 316.357 while stopping threads.
362.102640     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 352, ERRNO-OK
362.103125     [threads] wait_for_event_filtered: waitpid 352 received SIGSTOP - Stopped (signal) (stopped)
362.103506     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.103684     [threads] get_pc: pc is 0x4e97c216
362.103762     [threads] filter_event: Expected stop.
362.103841     [threads] filter_event: SIGSTOP caught for LWP 316.352 while stopping threads.
362.103982     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 351, ERRNO-OK
362.104109     [threads] wait_for_event_filtered: waitpid 351 received SIGSTOP - Stopped (signal) (stopped)
362.104281     [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
362.104558     [threads] get_pc: pc is 0x4e97c216
362.104884     [threads] filter_event: Expected stop.
362.105156     [threads] filter_event: SIGSTOP caught for LWP 316.351 while stopping threads.
362.105485     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 350, ERRNO-OK
362.105883     [threads] wait_for_event_filtered: waitpid 350 received SIGSTOP - Stopped (signal) (stopped)
362.106391     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.106649     [threads] get_pc: pc is 0x4e97c214
362.106903     [threads] filter_event: Expected stop.
362.107243     [threads] filter_event: SIGSTOP caught for LWP 316.350 while stopping threads.
362.107683     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 349, ERRNO-OK
362.107975     [threads] wait_for_event_filtered: waitpid 349 received SIGSTOP - Stopped (signal) (stopped)
362.108352     [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.108625     [threads] get_pc: pc is 0x4e97c214
362.108878     [threads] filter_event: Expected stop.
362.109126     [threads] filter_event: SIGSTOP caught for LWP 316.349 while stopping threads.
362.109449     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.110399     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
362.110966     [threads] operator(): leader_pid=3032, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.111489     [threads] operator(): leader_pid=3031, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.111814     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
362.112082     [threads] stop_all_lwps: setting stopping_threads back to !stopping
362.112530   [threads] stop_all_lwps: exit
362.112913   [threads] select_event_lwp: Select single-step LWP 316.379
362.113206   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
362.113450   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
362.113683   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
362.113967   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
362.114218   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
362.114505   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
362.114767   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
362.115040   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
362.115311   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
362.115581   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
362.115838   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
362.116109   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
362.116377   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
362.116737   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
362.117111   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
362.117388   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
362.117660   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
362.117915   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
362.118260   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
362.118525   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
362.118799   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
362.119130   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
362.119493   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
362.119784   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
362.120109   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
362.120380   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
362.120868   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
362.121227   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
362.121500   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
362.121853   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
362.122139   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
362.122412   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
362.122746   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
362.123092   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
362.123364   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
362.123621   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
362.124002   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
362.124277   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
362.124546   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
362.124815   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
362.125181   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
362.125456   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
362.125804   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
362.126079   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
362.126347   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
362.126603   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
362.126870   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
362.127144   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
362.127414   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
362.127672   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
362.127939   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
362.128454   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
362.128730   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
362.128990   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
362.129281   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
362.129538   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
362.129936   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
362.130256   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
362.130533   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
362.130876   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
362.131138   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
362.131737   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
362.132024   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
362.132285   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
362.132561   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
362.132831   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
362.133258   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
362.133551   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
362.133821   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
362.134091   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
362.134487   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
362.134821   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
362.135080   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
362.135351   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
362.135695   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
362.135976   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3032 needs to move out of the jump pad... no
362.136253   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3031 needs to move out of the jump pad... no
362.136888   [threads] wait_1: ret = LWP 316.379, status->kind = STOPPED, sig = GDB_SIGNAL_TRAP
362.137147 [threads] wait_1: exit
362.137480 [threads] prepare_resume_reply: Writing resume reply for LWP 316.379:1
362.139207 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.139617 [threads] handle_serial_event: handling possible serial event
362.140950 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.141214 [threads] handle_serial_event: handling possible serial event
362.142369 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.142619 [threads] handle_serial_event: handling possible serial event
362.143118 [threads] resume: enter
362.143714   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
362.144011   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
362.144492   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.144878   [threads] resume: Not resuming, all-stop and found an LWP with pending status
362.145256   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
362.145517   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
362.145794   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
362.146057   [threads] resume_one_thread: leaving LWP 316 stopped
362.146308   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
362.146659   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.147017   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
362.147284   [threads] resume_one_thread: leaving LWP 349 stopped
362.147530   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
362.147804   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.148173   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
362.148554   [threads] resume_one_thread: leaving LWP 350 stopped
362.148821   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
362.149077   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.149471   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
362.149732   [threads] resume_one_thread: leaving LWP 351 stopped
362.150216   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
362.150506   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.150781   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
362.151026   [threads] resume_one_thread: leaving LWP 352 stopped
362.151506   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
362.151899   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.152186   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
362.152449   [threads] resume_one_thread: leaving LWP 357 stopped
362.152699   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
362.152973   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.153246   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
362.153576   [threads] resume_one_thread: leaving LWP 358 stopped
362.153828   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
362.154100   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.154373   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
362.154631   [threads] resume_one_thread: leaving LWP 359 stopped
362.154877   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
362.155150   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.155426   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
362.155668   [threads] resume_one_thread: leaving LWP 360 stopped
362.155931   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
362.156198   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.156467   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
362.156717   [threads] resume_one_thread: leaving LWP 361 stopped
362.156983   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
362.157254   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.157516   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
362.157776   [threads] resume_one_thread: leaving LWP 364 stopped
362.158140   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
362.158414   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.158678   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
362.158941   [threads] resume_one_thread: leaving LWP 365 stopped
362.159203   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
362.159476   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.159806   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
362.160267   [threads] resume_one_thread: leaving LWP 366 stopped
362.160531   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
362.160814   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.161088   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
362.161333   [threads] resume_one_thread: leaving LWP 367 stopped
362.161759   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
362.162022   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.162294   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
362.162551   [threads] resume_one_thread: leaving LWP 368 stopped
362.162918   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
362.163193   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.163597   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
362.163958   [threads] resume_one_thread: leaving LWP 369 stopped
362.164186   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
362.164416   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.164650   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
362.165014   [threads] resume_one_thread: leaving LWP 370 stopped
362.165239   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
362.165466   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.165693   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
362.165912   [threads] resume_one_thread: leaving LWP 371 stopped
362.166134   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
362.166361   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.166732   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
362.166959   [threads] resume_one_thread: leaving LWP 372 stopped
362.167180   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
362.167410   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.167640   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
362.167861   [threads] resume_one_thread: leaving LWP 373 stopped
362.168084   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
362.168318   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.168599   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
362.168833   [threads] resume_one_thread: leaving LWP 374 stopped
362.169271   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
362.169535   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.169793   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
362.170121   [threads] resume_one_thread: leaving LWP 375 stopped
362.170395   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
362.170675   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.170937   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
362.171197   [threads] resume_one_thread: leaving LWP 376 stopped
362.171458   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
362.171875   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.172153   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
362.172400   [threads] resume_one_thread: leaving LWP 377 stopped
362.172680   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
362.172943   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.173218   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
362.173664   [threads] resume_one_thread: leaving LWP 378 stopped
362.173916   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
362.174189   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.174467   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
362.174826   [threads] resume_one_thread: leaving LWP 379 stopped
362.175090   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
362.175366   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.175638   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
362.175973   [threads] resume_one_thread: leaving LWP 380 stopped
362.176232   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
362.176511   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.176784   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
362.177031   [threads] resume_one_thread: leaving LWP 381 stopped
362.177422   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
362.177702   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.178075   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
362.178322   [threads] resume_one_thread: leaving LWP 382 stopped
362.178593   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
362.178945   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.179328   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
362.179604   [threads] resume_one_thread: leaving LWP 383 stopped
362.179869   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
362.180294   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.180569   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
362.180898   [threads] resume_one_thread: leaving LWP 384 stopped
362.181167   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
362.181428   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.181851   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
362.182102   [threads] resume_one_thread: leaving LWP 385 stopped
362.182364   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
362.182634   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.183146   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
362.183415   [threads] resume_one_thread: leaving LWP 386 stopped
362.183682   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
362.183943   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.184284   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
362.184544   [threads] resume_one_thread: leaving LWP 387 stopped
362.184905   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
362.185274   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.185549   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
362.185808   [threads] resume_one_thread: leaving LWP 388 stopped
362.186162   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
362.186500   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.186777   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
362.187025   [threads] resume_one_thread: leaving LWP 389 stopped
362.187623   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
362.187998   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.188275   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
362.188522   [threads] resume_one_thread: leaving LWP 390 stopped
362.188893   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
362.189158   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.189434   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
362.189689   [threads] resume_one_thread: leaving LWP 391 stopped
362.189938   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
362.190268   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.190564   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
362.190811   [threads] resume_one_thread: leaving LWP 392 stopped
362.191062   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
362.191338   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.191612   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
362.192107   [threads] resume_one_thread: leaving LWP 393 stopped
362.192365   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
362.192641   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.193031   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
362.193344   [threads] resume_one_thread: leaving LWP 394 stopped
362.193616   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
362.193887   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.194222   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
362.194467   [threads] resume_one_thread: leaving LWP 395 stopped
362.194731   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
362.195003   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.195342   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
362.195661   [threads] resume_one_thread: leaving LWP 396 stopped
362.195911   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
362.196184   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.196457   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
362.196715   [threads] resume_one_thread: leaving LWP 397 stopped
362.196962   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
362.197341   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.197610   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
362.197871   [threads] resume_one_thread: leaving LWP 398 stopped
362.198130   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
362.198405   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.198665   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
362.199048   [threads] resume_one_thread: leaving LWP 399 stopped
362.199300   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
362.199577   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.199970   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
362.200435   [threads] resume_one_thread: leaving LWP 400 stopped
362.200711   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
362.200988   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.201259   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
362.201500   [threads] resume_one_thread: leaving LWP 401 stopped
362.201769   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
362.202043   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.202300   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
362.202559   [threads] resume_one_thread: leaving LWP 403 stopped
362.202821   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
362.203095   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.203355   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
362.203613   [threads] resume_one_thread: leaving LWP 404 stopped
362.203880   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
362.204134   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.204405   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
362.204658   [threads] resume_one_thread: leaving LWP 405 stopped
362.204908   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
362.205182   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.205454   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
362.205699   [threads] resume_one_thread: leaving LWP 406 stopped
362.205969   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
362.206240   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.206497   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
362.206758   [threads] resume_one_thread: leaving LWP 407 stopped
362.207021   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
362.207291   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.207549   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
362.207808   [threads] resume_one_thread: leaving LWP 408 stopped
362.208069   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
362.208327   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.208599   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
362.208843   [threads] resume_one_thread: leaving LWP 409 stopped
362.209109   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
362.209632   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
362.209877   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
362.210297   [threads] resume_one_thread: leaving LWP 410 stopped
362.210552   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
362.210830   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
362.211106   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
362.211350   [threads] resume_one_thread: leaving LWP 411 stopped
362.211614   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
362.211986   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.212267   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
362.212511   [threads] resume_one_thread: leaving LWP 412 stopped
362.212775   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
362.213165   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.213447   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
362.213706   [threads] resume_one_thread: leaving LWP 414 stopped
362.213951   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
362.214321   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.214736   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
362.214984   [threads] resume_one_thread: leaving LWP 433 stopped
362.215252   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
362.215521   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.215791   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
362.216149   [threads] resume_one_thread: leaving LWP 436 stopped
362.216521   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
362.216796   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.217070   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
362.217392   [threads] resume_one_thread: leaving LWP 437 stopped
362.217645   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
362.217917   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.218319   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
362.218556   [threads] resume_one_thread: leaving LWP 483 stopped
362.218775   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
362.219011   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.219243   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
362.219462   [threads] resume_one_thread: leaving LWP 484 stopped
362.219782   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
362.220146   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.220380   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
362.220601   [threads] resume_one_thread: leaving LWP 493 stopped
362.220824   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
362.221052   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.221281   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
362.221503   [threads] resume_one_thread: leaving LWP 508 stopped
362.221725   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
362.221950   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.222178   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
362.222395   [threads] resume_one_thread: leaving LWP 613 stopped
362.222619   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
362.222883   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.223158   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
362.223381   [threads] resume_one_thread: leaving LWP 624 stopped
362.223660   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
362.223947   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.224224   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
362.224486   [threads] resume_one_thread: leaving LWP 655 stopped
362.224837   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
362.225112   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.225372   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
362.225632   [threads] resume_one_thread: leaving LWP 660 stopped
362.225895   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
362.226150   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.226424   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
362.226799   [threads] resume_one_thread: leaving LWP 661 stopped
362.227071   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
362.227347   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.227693   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
362.228101   [threads] resume_one_thread: leaving LWP 1074 stopped
362.228352   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
362.228624   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.228903   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
362.229162   [threads] resume_one_thread: leaving LWP 1118 stopped
362.229410   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
362.229680   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.229954   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
362.230263   [threads] resume_one_thread: leaving LWP 1293 stopped
362.230665   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 1
362.230944   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.231219   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: thread->last_resume_kind 0, line 4717
362.231464   [threads] resume_one_thread: leaving LWP 3027 stopped
362.231724   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 1
362.232001   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.232257   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: thread->last_resume_kind 0, line 4717
362.232515   [threads] resume_one_thread: leaving LWP 3028 stopped
362.232902   [threads] operator(): [zyan1]  thread LWP 3032.3032 is going to call resume_one_thread, leave_all_stopped 1
362.233165   [threads] resume_one_thread: [zyan1]  thread LWP 3032.3032: 4624
362.233434   [threads] operator(): [zyan1]  thread LWP 3031.3031 is going to call resume_one_thread, leave_all_stopped 1
362.233705   [threads] resume_one_thread: [zyan1]  thread LWP 3031.3031: 4624
362.233951 [threads] resume: exit
362.234210 [threads] wait_1: enter
362.234577   [threads] wait_1: [<all threads>]
362.234857   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.235151   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.235516   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
362.235802   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.411, last_resume_kind 0, lp->stop_reason 0
362.236348   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.236709   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
362.236989   [threads] wait_for_event_filtered: Got a pending child 410
362.237248   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
362.237644   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3031.3031.0
362.238079   [threads] wait_1: Hit a non-gdbserver trap event.
362.238481   [threads] stop_all_lwps: enter
362.238740     [threads] stop_all_lwps: stop, except=none
362.239231     [threads] wait_for_sigstop: pulling events
362.239604     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.240571     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
362.241322     [threads] operator(): leader_pid=3032, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.242043     [threads] operator(): leader_pid=3031, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.242430     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
362.242839     [threads] stop_all_lwps: setting stopping_threads back to !stopping
362.243115   [threads] stop_all_lwps: exit
362.243710   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
362.244012   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
362.244290   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
362.244704   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
362.244974   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
362.245248   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
362.245517   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
362.245774   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
362.246042   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
362.246430   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
362.246712   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
362.246985   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
362.247255   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
362.247517   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
362.247779   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
362.248049   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
362.248306   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
362.248577   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
362.248847   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
362.249118   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
362.249370   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
362.249641   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
362.249914   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
362.250259   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
362.250539   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
362.250801   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
362.251188   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
362.251628   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
362.251884   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
362.252150   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
362.252423   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
362.252798   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
362.253079   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
362.253443   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
362.253776   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
362.254036   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
362.254305   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
362.254677   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
362.255071   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
362.255326   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
362.255594   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
362.255865   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
362.256123   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
362.256463   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
362.256824   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
362.257086   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
362.257360   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
362.257630   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
362.257901   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
362.258345   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
362.258612   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
362.258884   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
362.259150   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
362.259409   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
362.259779   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
362.260330   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
362.260595   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
362.260869   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
362.261139   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
362.261409   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
362.261664   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
362.261932   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
362.262216   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
362.262477   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
362.262745   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
362.263166   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
362.263441   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
362.263715   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
362.263988   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
362.264356   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
362.264633   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
362.264947   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
362.265293   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
362.265573   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
362.265844   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
362.266104   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3032 needs to move out of the jump pad... no
362.266573   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3031 needs to move out of the jump pad... no
362.267109   [threads] wait_1: ret = LWP 316.411, status->kind = VFORKED, child_ptid = 3032.3032.0
362.267377 [threads] wait_1: exit
362.267705 [threads] prepare_resume_reply: Writing resume reply for LWP 316.411:5
362.269435 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.269830 [threads] handle_serial_event: handling possible serial event
362.270254 [threads] write_memory: Writing 0023 to 0x0045b444 in process 316
362.271792 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.272173 [threads] handle_serial_event: handling possible serial event
362.272501 [threads] write_memory: Writing 7047 to 0x4e90bb30 in process 316
362.273897 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.274148 [threads] handle_serial_event: handling possible serial event
362.274420 [threads] write_memory: Writing 38b5 to 0x4e98a7d8 in process 316
362.275608 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.275879 [threads] handle_serial_event: handling possible serial event
362.276165 [threads] write_memory: Writing 08b5 to 0x4ea6e998 in process 316
362.277290 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.277555 [threads] handle_serial_event: handling possible serial event
Detaching from process 3032
362.278416 [threads] stop_tracing: Tracing is already off, ignoring
362.278683 [threads] stop_all_lwps: enter
362.279214   [threads] stop_all_lwps: stop, except=none
362.279516   [threads] wait_for_sigstop: pulling events
362.280320   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.281415   [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
362.282898   [threads] operator(): leader_pid=3032, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.284151   [threads] operator(): leader_pid=3031, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.284892   [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
362.285559   [threads] stop_all_lwps: setting stopping_threads back to !stopping
362.285784 [threads] stop_all_lwps: exit
362.286379 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
362.286908 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
362.287161 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
362.287977 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
362.288211 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
362.288757 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
362.289015 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
362.289614 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
362.289875 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
362.290175 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
362.290412 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
362.290700 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
362.290975 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
362.291353 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
362.291631 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
362.291912 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
362.292168 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
362.292437 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
362.292706 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
362.293089 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
362.293366 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
362.293823 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
362.294014 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
362.294096 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
362.294176 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
362.294254 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
362.294333 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
362.294410 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
362.294524 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
362.294604 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
362.294682 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
362.294760 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
362.294968 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
362.295110 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
362.295222 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
362.295304 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
362.295383 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
362.295462 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
362.295541 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
362.295618 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
362.295814 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
362.296152 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
362.296438 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
362.296695 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
362.297038 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
362.297313 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
362.297585 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
362.297844 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
362.298119 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
362.298455 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
362.298734 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
362.298992 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
362.299267 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
362.299603 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
362.299876 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
362.300224 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
362.300559 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
362.300831 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
362.301104 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
362.301576 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
362.301851 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
362.302123 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
362.302396 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
362.302654 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
362.302922 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
362.303365 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
362.303630 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
362.303902 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
362.304175 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
362.304450 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
362.304709 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
362.304997 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
362.305255 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
362.305532 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
362.305800 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
362.306057 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
362.306328 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3032 needs to move out of the jump pad... no
362.306608 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3031 needs to move out of the jump pad... no
362.310238 [threads] detach_one_lwp: PTRACE_DETACH (LWP 3032.3032, Unknown signal 0, 0) (OK)
362.310362 [threads] delete_lwp: deleting 3032
362.310663 [threads] unstop_all_lwps: enter
362.310788   [threads] unstop_all_lwps: except=nullptr
362.310852   [threads] proceed_one_lwp: lwp 316
362.310908   [threads] proceed_one_lwp:    client wants LWP to remain 316 stopped
362.310967   [threads] proceed_one_lwp: lwp 349
362.311018   [threads] proceed_one_lwp:    client wants LWP to remain 349 stopped
362.311071   [threads] proceed_one_lwp: lwp 350
362.311121   [threads] proceed_one_lwp:    client wants LWP to remain 350 stopped
362.311175   [threads] proceed_one_lwp: lwp 351
362.311226   [threads] proceed_one_lwp:    client wants LWP to remain 351 stopped
362.311280   [threads] proceed_one_lwp: lwp 352
362.311331   [threads] proceed_one_lwp:    client wants LWP to remain 352 stopped
362.311383   [threads] proceed_one_lwp: lwp 357
362.311435   [threads] proceed_one_lwp:    client wants LWP to remain 357 stopped
362.311487   [threads] proceed_one_lwp: lwp 358
362.311538   [threads] proceed_one_lwp:    client wants LWP to remain 358 stopped
362.311591   [threads] proceed_one_lwp: lwp 359
362.311641   [threads] proceed_one_lwp:    client wants LWP to remain 359 stopped
362.311694   [threads] proceed_one_lwp: lwp 360
362.311747   [threads] proceed_one_lwp:    client wants LWP to remain 360 stopped
362.311799   [threads] proceed_one_lwp: lwp 361
362.311849   [threads] proceed_one_lwp:    client wants LWP to remain 361 stopped
362.311902   [threads] proceed_one_lwp: lwp 364
362.311953   [threads] proceed_one_lwp:    client wants LWP to remain 364 stopped
362.312005   [threads] proceed_one_lwp: lwp 365
362.312057   [threads] proceed_one_lwp:    client wants LWP to remain 365 stopped
362.312109   [threads] proceed_one_lwp: lwp 366
362.312159   [threads] proceed_one_lwp:    client wants LWP to remain 366 stopped
362.312212   [threads] proceed_one_lwp: lwp 367
362.312262   [threads] proceed_one_lwp:    client wants LWP to remain 367 stopped
362.312315   [threads] proceed_one_lwp: lwp 368
362.312366   [threads] proceed_one_lwp:    client wants LWP to remain 368 stopped
362.312419   [threads] proceed_one_lwp: lwp 369
362.312470   [threads] proceed_one_lwp:    client wants LWP to remain 369 stopped
362.312522   [threads] proceed_one_lwp: lwp 370
362.312572   [threads] proceed_one_lwp:    client wants LWP to remain 370 stopped
362.312625   [threads] proceed_one_lwp: lwp 371
362.312675   [threads] proceed_one_lwp:    client wants LWP to remain 371 stopped
362.312728   [threads] proceed_one_lwp: lwp 372
362.312780   [threads] proceed_one_lwp:    client wants LWP to remain 372 stopped
362.312832   [threads] proceed_one_lwp: lwp 373
362.312946   [threads] proceed_one_lwp:    client wants LWP to remain 373 stopped
362.313021   [threads] proceed_one_lwp: lwp 374
362.313079   [threads] proceed_one_lwp:    client wants LWP to remain 374 stopped
362.313204   [threads] proceed_one_lwp: lwp 375
362.313323   [threads] proceed_one_lwp:    client wants LWP to remain 375 stopped
362.313427   [threads] proceed_one_lwp: lwp 376
362.313528   [threads] proceed_one_lwp:    client wants LWP to remain 376 stopped
362.313628   [threads] proceed_one_lwp: lwp 377
362.313688   [threads] proceed_one_lwp:    client wants LWP to remain 377 stopped
362.313810   [threads] proceed_one_lwp: lwp 378
362.313908   [threads] proceed_one_lwp:    client wants LWP to remain 378 stopped
362.313966   [threads] proceed_one_lwp: lwp 379
362.314018   [threads] proceed_one_lwp:    client wants LWP to remain 379 stopped
362.314071   [threads] proceed_one_lwp: lwp 380
362.314121   [threads] proceed_one_lwp:    client wants LWP to remain 380 stopped
362.314176   [threads] proceed_one_lwp: lwp 381
362.314227   [threads] proceed_one_lwp:    client wants LWP to remain 381 stopped
362.314350   [threads] proceed_one_lwp: lwp 382
362.314469   [threads] proceed_one_lwp:    client wants LWP to remain 382 stopped
362.314571   [threads] proceed_one_lwp: lwp 383
362.314666   [threads] proceed_one_lwp:    client wants LWP to remain 383 stopped
362.314755   [threads] proceed_one_lwp: lwp 384
362.314809   [threads] proceed_one_lwp:    client wants LWP to remain 384 stopped
362.314864   [threads] proceed_one_lwp: lwp 385
362.314986   [threads] proceed_one_lwp:    client wants LWP to remain 385 stopped
362.315096   [threads] proceed_one_lwp: lwp 386
362.315153   [threads] proceed_one_lwp:    client wants LWP to remain 386 stopped
362.315210   [threads] proceed_one_lwp: lwp 387
362.315261   [threads] proceed_one_lwp:    client wants LWP to remain 387 stopped
362.315314   [threads] proceed_one_lwp: lwp 388
362.315365   [threads] proceed_one_lwp:    client wants LWP to remain 388 stopped
362.315461   [threads] proceed_one_lwp: lwp 389
362.315522   [threads] proceed_one_lwp:    client wants LWP to remain 389 stopped
362.315577   [threads] proceed_one_lwp: lwp 390
362.315629   [threads] proceed_one_lwp:    client wants LWP to remain 390 stopped
362.315682   [threads] proceed_one_lwp: lwp 391
362.315732   [threads] proceed_one_lwp:    client wants LWP to remain 391 stopped
362.315787   [threads] proceed_one_lwp: lwp 392
362.315838   [threads] proceed_one_lwp:    client wants LWP to remain 392 stopped
362.315893   [threads] proceed_one_lwp: lwp 393
362.315946   [threads] proceed_one_lwp:    client wants LWP to remain 393 stopped
362.316000   [threads] proceed_one_lwp: lwp 394
362.316052   [threads] proceed_one_lwp:    client wants LWP to remain 394 stopped
362.316106   [threads] proceed_one_lwp: lwp 395
362.316157   [threads] proceed_one_lwp:    client wants LWP to remain 395 stopped
362.316210   [threads] proceed_one_lwp: lwp 396
362.316262   [threads] proceed_one_lwp:    client wants LWP to remain 396 stopped
362.316316   [threads] proceed_one_lwp: lwp 397
362.316367   [threads] proceed_one_lwp:    client wants LWP to remain 397 stopped
362.316420   [threads] proceed_one_lwp: lwp 398
362.316489   [threads] proceed_one_lwp:    client wants LWP to remain 398 stopped
362.316553   [threads] proceed_one_lwp: lwp 399
362.316633   [threads] proceed_one_lwp:    client wants LWP to remain 399 stopped
362.316692   [threads] proceed_one_lwp: lwp 400
362.316744   [threads] proceed_one_lwp:    client wants LWP to remain 400 stopped
362.316798   [threads] proceed_one_lwp: lwp 401
362.316849   [threads] proceed_one_lwp:    client wants LWP to remain 401 stopped
362.316903   [threads] proceed_one_lwp: lwp 403
362.316954   [threads] proceed_one_lwp:    client wants LWP to remain 403 stopped
362.317008   [threads] proceed_one_lwp: lwp 404
362.317058   [threads] proceed_one_lwp:    client wants LWP to remain 404 stopped
362.317112   [threads] proceed_one_lwp: lwp 405
362.317162   [threads] proceed_one_lwp:    client wants LWP to remain 405 stopped
362.317213   [threads] proceed_one_lwp: lwp 406
362.317263   [threads] proceed_one_lwp:    client wants LWP to remain 406 stopped
362.317317   [threads] proceed_one_lwp: lwp 407
362.317367   [threads] proceed_one_lwp:    client wants LWP to remain 407 stopped
362.317419   [threads] proceed_one_lwp: lwp 408
362.317469   [threads] proceed_one_lwp:    client wants LWP to remain 408 stopped
362.317523   [threads] proceed_one_lwp: lwp 409
362.317574   [threads] proceed_one_lwp:    client wants LWP to remain 409 stopped
362.317628   [threads] proceed_one_lwp: lwp 410
362.317679   [threads] proceed_one_lwp:    client wants LWP to remain 410 stopped
362.317731   [threads] proceed_one_lwp: lwp 411
362.317781   [threads] proceed_one_lwp:    client wants LWP to remain 411 stopped
362.317834   [threads] proceed_one_lwp: lwp 412
362.317885   [threads] proceed_one_lwp:    client wants LWP to remain 412 stopped
362.317937   [threads] proceed_one_lwp: lwp 414
362.317987   [threads] proceed_one_lwp:    client wants LWP to remain 414 stopped
362.318041   [threads] proceed_one_lwp: lwp 433
362.318094   [threads] proceed_one_lwp:    client wants LWP to remain 433 stopped
362.318147   [threads] proceed_one_lwp: lwp 436
362.318200   [threads] proceed_one_lwp:    client wants LWP to remain 436 stopped
362.318253   [threads] proceed_one_lwp: lwp 437
362.318304   [threads] proceed_one_lwp:    client wants LWP to remain 437 stopped
362.318357   [threads] proceed_one_lwp: lwp 483
362.318408   [threads] proceed_one_lwp:    client wants LWP to remain 483 stopped
362.318462   [threads] proceed_one_lwp: lwp 484
362.318515   [threads] proceed_one_lwp:    client wants LWP to remain 484 stopped
362.318571   [threads] proceed_one_lwp: lwp 493
362.318623   [threads] proceed_one_lwp:    client wants LWP to remain 493 stopped
362.318676   [threads] proceed_one_lwp: lwp 508
362.318728   [threads] proceed_one_lwp:    client wants LWP to remain 508 stopped
362.318782   [threads] proceed_one_lwp: lwp 613
362.318834   [threads] proceed_one_lwp:    client wants LWP to remain 613 stopped
362.318889   [threads] proceed_one_lwp: lwp 624
362.318947   [threads] proceed_one_lwp:    client wants LWP to remain 624 stopped
362.319004   [threads] proceed_one_lwp: lwp 655
362.319058   [threads] proceed_one_lwp:    client wants LWP to remain 655 stopped
362.319111   [threads] proceed_one_lwp: lwp 660
362.319164   [threads] proceed_one_lwp:    client wants LWP to remain 660 stopped
362.319218   [threads] proceed_one_lwp: lwp 661
362.319271   [threads] proceed_one_lwp:    client wants LWP to remain 661 stopped
362.319324   [threads] proceed_one_lwp: lwp 1074
362.319376   [threads] proceed_one_lwp:    client wants LWP to remain 1074 stopped
362.319431   [threads] proceed_one_lwp: lwp 1118
362.319481   [threads] proceed_one_lwp:    client wants LWP to remain 1118 stopped
362.319534   [threads] proceed_one_lwp: lwp 1293
362.319584   [threads] proceed_one_lwp:    client wants LWP to remain 1293 stopped
362.319639   [threads] proceed_one_lwp: lwp 3027
362.319690   [threads] proceed_one_lwp:    client wants LWP to remain 3027 stopped
362.319746   [threads] proceed_one_lwp: lwp 3028
362.319798   [threads] proceed_one_lwp:    client wants LWP to remain 3028 stopped
362.319853   [threads] proceed_one_lwp: lwp 3031
362.319905   [threads] proceed_one_lwp:    client wants LWP to remain 3031 stopped
362.319959 [threads] unstop_all_lwps: exit
362.325061 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.326002 [threads] handle_serial_event: handling possible serial event
362.331753 [threads] resume: enter
362.335061   [threads] thread_needs_step_over: Need step over [LWP 316]? Ignoring, should remain stopped
362.336709   [threads] thread_needs_step_over: Need step over [LWP 349]? Ignoring, should remain stopped
362.338481   [threads] thread_needs_step_over: Need step over [LWP 350]? Ignoring, should remain stopped
362.339584   [threads] thread_needs_step_over: Need step over [LWP 351]? Ignoring, should remain stopped
362.340335   [threads] thread_needs_step_over: Need step over [LWP 352]? Ignoring, should remain stopped
362.340655   [threads] thread_needs_step_over: Need step over [LWP 357]? Ignoring, should remain stopped
362.340931   [threads] thread_needs_step_over: Need step over [LWP 358]? Ignoring, should remain stopped
362.341650   [threads] thread_needs_step_over: Need step over [LWP 359]? Ignoring, should remain stopped
362.341934   [threads] thread_needs_step_over: Need step over [LWP 360]? Ignoring, should remain stopped
362.342721   [threads] thread_needs_step_over: Need step over [LWP 361]? Ignoring, should remain stopped
362.343044   [threads] thread_needs_step_over: Need step over [LWP 364]? Ignoring, should remain stopped
362.343796   [threads] thread_needs_step_over: Need step over [LWP 365]? Ignoring, should remain stopped
362.344111   [threads] thread_needs_step_over: Need step over [LWP 366]? Ignoring, should remain stopped
362.344895   [threads] thread_needs_step_over: Need step over [LWP 367]? Ignoring, should remain stopped
362.345617   [threads] thread_needs_step_over: Need step over [LWP 368]? Ignoring, should remain stopped
362.345883   [threads] thread_needs_step_over: Need step over [LWP 369]? Ignoring, should remain stopped
362.346569   [threads] thread_needs_step_over: Need step over [LWP 370]? Ignoring, should remain stopped
362.346849   [threads] thread_needs_step_over: Need step over [LWP 371]? Ignoring, should remain stopped
362.347517   [threads] thread_needs_step_over: Need step over [LWP 372]? Ignoring, should remain stopped
362.347773   [threads] thread_needs_step_over: Need step over [LWP 373]? Ignoring, should remain stopped
362.348393   [threads] thread_needs_step_over: Need step over [LWP 374]? Ignoring, should remain stopped
362.348644   [threads] thread_needs_step_over: Need step over [LWP 375]? Ignoring, should remain stopped
362.349259   [threads] thread_needs_step_over: Need step over [LWP 376]? Ignoring, should remain stopped
362.349533   [threads] thread_needs_step_over: Need step over [LWP 377]? Ignoring, should remain stopped
362.350375   [threads] thread_needs_step_over: Need step over [LWP 378]? Ignoring, should remain stopped
362.350627   [threads] thread_needs_step_over: Need step over [LWP 379]? Ignoring, should remain stopped
362.351291   [threads] thread_needs_step_over: Need step over [LWP 380]? Ignoring, should remain stopped
362.351551   [threads] thread_needs_step_over: Need step over [LWP 381]? Ignoring, should remain stopped
362.351808   [threads] thread_needs_step_over: Need step over [LWP 382]? Ignoring, should remain stopped
362.352495   [threads] thread_needs_step_over: Need step over [LWP 383]? Ignoring, should remain stopped
362.352749   [threads] thread_needs_step_over: Need step over [LWP 384]? Ignoring, should remain stopped
362.353382   [threads] thread_needs_step_over: Need step over [LWP 385]? Ignoring, should remain stopped
362.354023   [threads] thread_needs_step_over: Need step over [LWP 386]? Ignoring, should remain stopped
362.354316   [threads] thread_needs_step_over: Need step over [LWP 387]? Ignoring, should remain stopped
362.355087   [threads] thread_needs_step_over: Need step over [LWP 388]? Ignoring, should remain stopped
362.355402   [threads] thread_needs_step_over: Need step over [LWP 389]? Ignoring, should remain stopped
362.355655   [threads] thread_needs_step_over: Need step over [LWP 390]? Ignoring, should remain stopped
362.355903   [threads] thread_needs_step_over: Need step over [LWP 391]? Ignoring, should remain stopped
362.356549   [threads] thread_needs_step_over: Need step over [LWP 392]? Ignoring, should remain stopped
362.356805   [threads] thread_needs_step_over: Need step over [LWP 393]? Ignoring, should remain stopped
362.357401   [threads] thread_needs_step_over: Need step over [LWP 394]? Ignoring, should remain stopped
362.357662   [threads] thread_needs_step_over: Need step over [LWP 395]? Ignoring, should remain stopped
362.358346   [threads] thread_needs_step_over: Need step over [LWP 396]? Ignoring, should remain stopped
362.359044   [threads] thread_needs_step_over: Need step over [LWP 397]? Ignoring, should remain stopped
362.359321   [threads] thread_needs_step_over: Need step over [LWP 398]? Ignoring, should remain stopped
362.360105   [threads] thread_needs_step_over: Need step over [LWP 399]? Ignoring, should remain stopped
362.360380   [threads] thread_needs_step_over: Need step over [LWP 400]? Ignoring, should remain stopped
362.361055   [threads] thread_needs_step_over: Need step over [LWP 401]? Ignoring, should remain stopped
362.361334   [threads] thread_needs_step_over: Need step over [LWP 403]? Ignoring, should remain stopped
362.362057   [threads] thread_needs_step_over: Need step over [LWP 404]? Ignoring, should remain stopped
362.362339   [threads] thread_needs_step_over: Need step over [LWP 405]? Ignoring, should remain stopped
362.363021   [threads] thread_needs_step_over: Need step over [LWP 406]? Ignoring, should remain stopped
362.363342   [threads] thread_needs_step_over: Need step over [LWP 407]? Ignoring, should remain stopped
362.363609   [threads] thread_needs_step_over: Need step over [LWP 408]? Ignoring, should remain stopped
362.364318   [threads] thread_needs_step_over: Need step over [LWP 409]? Ignoring, should remain stopped
362.364579   [threads] thread_needs_step_over: Need step over [LWP 410]? Ignoring, should remain stopped
362.365234   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.365833   [threads] get_pc: pc is 0x4e9fb3e8
362.366130   [threads] thread_needs_step_over: Need step over [LWP 411]? No, no breakpoint found at 0x4e9fb3e8
362.366755   [threads] thread_needs_step_over: Need step over [LWP 412]? Ignoring, should remain stopped
362.367019   [threads] thread_needs_step_over: Need step over [LWP 414]? Ignoring, should remain stopped
362.367643   [threads] thread_needs_step_over: Need step over [LWP 433]? Ignoring, should remain stopped
362.367905   [threads] thread_needs_step_over: Need step over [LWP 436]? Ignoring, should remain stopped
362.368525   [threads] thread_needs_step_over: Need step over [LWP 437]? Ignoring, should remain stopped
362.368781   [threads] thread_needs_step_over: Need step over [LWP 483]? Ignoring, should remain stopped
362.369383   [threads] thread_needs_step_over: Need step over [LWP 484]? Ignoring, should remain stopped
362.369638   [threads] thread_needs_step_over: Need step over [LWP 493]? Ignoring, should remain stopped
362.370343   [threads] thread_needs_step_over: Need step over [LWP 508]? Ignoring, should remain stopped
362.370606   [threads] thread_needs_step_over: Need step over [LWP 613]? Ignoring, should remain stopped
362.371398   [threads] thread_needs_step_over: Need step over [LWP 624]? Ignoring, should remain stopped
362.371765   [threads] thread_needs_step_over: Need step over [LWP 655]? Ignoring, should remain stopped
362.372573   [threads] thread_needs_step_over: Need step over [LWP 660]? Ignoring, should remain stopped
362.372841   [threads] thread_needs_step_over: Need step over [LWP 661]? Ignoring, should remain stopped
362.373588   [threads] thread_needs_step_over: Need step over [LWP 1074]? Ignoring, should remain stopped
362.373858   [threads] thread_needs_step_over: Need step over [LWP 1118]? Ignoring, should remain stopped
362.374549   [threads] thread_needs_step_over: Need step over [LWP 1293]? Ignoring, should remain stopped
362.374803   [threads] thread_needs_step_over: Need step over [LWP 3027]? Ignoring, should remain stopped
362.375454   [threads] thread_needs_step_over: Need step over [LWP 3028]? Ignoring, should remain stopped
362.375710   [threads] thread_needs_step_over: Need step over [LWP 3031]? Ignoring, should remain stopped
362.376356   [threads] resume: Resuming, no pending status or step over needed
362.376615   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
362.377268   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4624
362.377887   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
362.378194   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4624
362.378827   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
362.379102   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4624
362.379758   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
362.380176   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4624
362.380866   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
362.381506   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4624
362.381795   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
362.382424   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4624
362.382689   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
362.383318   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4624
362.388534   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
362.388843   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4624
362.389462   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
362.389751   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4624
362.390434   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
362.390735   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4624
362.390985   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
362.391645   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4624
362.391906   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
362.392592   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4624
362.392854   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
362.393509   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4624
362.394122   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
362.394419   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4624
362.395057   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
362.395330   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4624
362.395953   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
362.396230   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4624
362.396899   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
362.397165   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4624
362.397825   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
362.398089   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4624
362.398726   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
362.399331   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4624
362.399618   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
362.400216   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4624
362.400478   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
362.401204   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4624
362.401476   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
362.402148   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4624
362.402415   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
362.403092   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4624
362.403355   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
362.404031   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4624
362.404304   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
362.404966   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4624
362.405236   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
362.405865   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4624
362.406127   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
362.406757   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4624
362.407339   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
362.407630   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4624
362.408236   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
362.408504   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4624
362.409128   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
362.409397   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4624
362.410166   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
362.410953   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4624
362.411222   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
362.411876   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4624
362.412144   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
362.412768   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4624
362.413028   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
362.413640   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4624
362.413894   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
362.414507   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4624
362.415114   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
362.415380   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4624
362.416027   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
362.416293   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4624
362.416917   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
362.417185   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4624
362.417799   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
362.418386   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4624
362.418685   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
362.419308   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4624
362.419565   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
362.420245   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4624
362.420904   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
362.421174   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4624
362.421794   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
362.422061   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4624
362.422689   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
362.422957   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4624
362.423564   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
362.423826   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4624
362.424454   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
362.425043   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4624
362.425334   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
362.425955   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4624
362.426222   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
362.426834   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4624
362.427096   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
362.427722   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4624
362.428319   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
362.428610   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4624
362.429222   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
362.429491   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4624
362.430223   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
362.430492   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4624
362.431124   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
362.431723   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4624
362.432004   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
362.432608   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4624
362.432869   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
362.433496   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4624
362.433759   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
362.434420   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4624
362.435034   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
362.435329   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
362.435952   [threads] resume_one_thread: resuming LWP 411
362.436222   [threads] proceed_one_lwp: lwp 411
362.436852   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.437108   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
362.437709   [threads] resume_one_lwp_throw: Resuming lwp 411 (continue, signal 0, stop not expected)
sigchld_handler
362.443424   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.411
362.444096   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
362.444395   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4624
362.445032   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
362.445303   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4624
362.445939   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
362.446207   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4624
362.446834   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
362.447107   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4624
362.447737   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
362.448362   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4624
362.448662   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
362.448936   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4624
362.449205   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
362.449459   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4624
362.449703   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
362.449956   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4624
362.450328   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
362.450585   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4624
362.450836   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
362.451082   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4624
362.451382   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
362.451640   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4624
362.451883   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
362.452130   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4624
362.452373   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
362.452615   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4624
362.452854   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
362.453099   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4624
362.453343   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
362.453590   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4624
362.453829   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
362.454076   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4624
362.454322   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
362.454565   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4624
362.454806   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 0
362.455052   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4624
362.455291   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 0
362.455541   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4624
362.455780   [threads] operator(): [zyan1]  thread LWP 3031.3031 is going to call resume_one_thread, leave_all_stopped 0
362.456023   [threads] resume_one_thread: [zyan1]  thread LWP 3031.3031: 4624
362.456265 [threads] resume: exit
362.456511 [threads] wait_1: enter
362.456751   [threads] wait_1: [<all threads>]
362.457264   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 411, ERRNO-OK
362.457572   [threads] wait_for_event_filtered: waitpid 411 received SIGTRAP - Trace/breakpoint trap (stopped)
362.457998   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.458253   [threads] get_pc: pc is 0x4e9fb3e8
362.458509   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.458744   [threads] get_pc: pc is 0x4e9fb3e8
362.459080   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.459501   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.411, last_resume_kind 0, lp->stop_reason 0
362.459860   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.411, last_resume_kind 0, lp->stop_reason 0
362.460225   [threads] wait_1: LWP 411: extended event with waitstatus status->kind = VFORK_DONE
362.460490   [threads] wait_1: Hit a non-gdbserver trap event.
362.460852   [threads] stop_all_lwps: enter
362.461092     [threads] stop_all_lwps: stop, except=none
362.461377     [threads] wait_for_sigstop: pulling events
362.461702     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.462472     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
362.463106     [threads] operator(): leader_pid=3031, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.463466     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
362.463766     [threads] stop_all_lwps: setting stopping_threads back to !stopping
362.464007   [threads] stop_all_lwps: exit
362.464424   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
362.464731   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
362.464989   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
362.465238   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
362.465486   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
362.465731   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
362.465980   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
362.466226   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
362.466476   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
362.466724   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
362.466969   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
362.467218   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
362.467465   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
362.467714   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
362.467963   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
362.468208   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
362.468453   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
362.468699   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
362.468945   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
362.469197   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
362.469443   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
362.469687   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
362.469930   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
362.470253   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
362.470509   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
362.470761   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
362.471004   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
362.471255   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
362.471501   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
362.471749   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
362.471995   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
362.472249   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
362.472534   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
362.472792   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
362.473037   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
362.473283   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
362.473530   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
362.473781   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
362.474027   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
362.474275   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
362.474522   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
362.474767   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
362.475012   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
362.475259   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
362.475504   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
362.475751   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
362.475997   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
362.476240   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
362.476488   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
362.476735   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
362.476976   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
362.477221   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
362.477473   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
362.477717   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
362.477962   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
362.478212   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
362.478469   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
362.478716   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
362.478962   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
362.479204   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
362.479457   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
362.479705   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
362.479954   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
362.480277   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
362.480539   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
362.480789   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
362.481034   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
362.481280   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
362.481537   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
362.481785   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
362.482030   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
362.482283   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
362.482535   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
362.482785   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
362.483073   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
362.483323   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
362.483583   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3031 needs to move out of the jump pad... no
362.484022   [threads] wait_1: ret = LWP 316.411, status->kind = VFORK_DONE
362.484282 [threads] wait_1: exit
362.484576 [threads] prepare_resume_reply: Writing resume reply for LWP 316.411:7
362.486201 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.486487 [threads] handle_serial_event: handling possible serial event
362.487465 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.487742 [threads] handle_serial_event: handling possible serial event
362.488953 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.489224 [threads] handle_serial_event: handling possible serial event
362.490416 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.490694 [threads] handle_serial_event: handling possible serial event
362.491698 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.491972 [threads] handle_serial_event: handling possible serial event
362.492311 [threads] write_memory: Writing 01de to 0x0045b444 in process 316
362.497746 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.498034 [threads] handle_serial_event: handling possible serial event
362.499326 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.499601 [threads] handle_serial_event: handling possible serial event
362.499943 [threads] write_memory: Writing 01de to 0x4e90bb30 in process 316
362.501263 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.501545 [threads] handle_serial_event: handling possible serial event
362.502806 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.503067 [threads] handle_serial_event: handling possible serial event
362.503391 [threads] write_memory: Writing 01de to 0x4e98a7d8 in process 316
362.504497 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.504770 [threads] handle_serial_event: handling possible serial event
362.506009 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.506273 [threads] handle_serial_event: handling possible serial event
362.506593 [threads] write_memory: Writing 01de to 0x4ea6e998 in process 316
362.507740 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.508005 [threads] handle_serial_event: handling possible serial event
362.508475 [threads] resume: enter
362.508854   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
362.509124   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
362.509564   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.509823   [threads] resume: Not resuming, all-stop and found an LWP with pending status
362.510152   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
362.510420   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
362.510682   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
362.510928   [threads] resume_one_thread: leaving LWP 316 stopped
362.511170   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
362.511422   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.511674   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
362.511910   [threads] resume_one_thread: leaving LWP 349 stopped
362.512152   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
362.512459   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.512722   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
362.512962   [threads] resume_one_thread: leaving LWP 350 stopped
362.513204   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
362.513451   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.513697   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
362.513935   [threads] resume_one_thread: leaving LWP 351 stopped
362.514175   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
362.514425   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.514670   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
362.514904   [threads] resume_one_thread: leaving LWP 352 stopped
362.515147   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
362.515394   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.515641   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
362.515874   [threads] resume_one_thread: leaving LWP 357 stopped
362.516109   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
362.516364   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.516613   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
362.516850   [threads] resume_one_thread: leaving LWP 358 stopped
362.517086   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
362.517336   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.517585   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
362.517819   [threads] resume_one_thread: leaving LWP 359 stopped
362.518056   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
362.518308   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.518555   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
362.518789   [threads] resume_one_thread: leaving LWP 360 stopped
362.519029   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
362.519281   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.519531   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
362.519768   [threads] resume_one_thread: leaving LWP 361 stopped
362.520060   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
362.520331   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.520589   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
362.520825   [threads] resume_one_thread: leaving LWP 364 stopped
362.521064   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
362.521306   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.521561   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
362.521797   [threads] resume_one_thread: leaving LWP 365 stopped
362.522033   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
362.522283   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.522529   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
362.522770   [threads] resume_one_thread: leaving LWP 366 stopped
362.523064   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
362.523316   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.523569   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
362.523804   [threads] resume_one_thread: leaving LWP 367 stopped
362.524038   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
362.524289   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.524543   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
362.524780   [threads] resume_one_thread: leaving LWP 368 stopped
362.525019   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
362.525263   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.525509   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
362.525753   [threads] resume_one_thread: leaving LWP 369 stopped
362.525991   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
362.526241   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.526491   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
362.526731   [threads] resume_one_thread: leaving LWP 370 stopped
362.526971   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
362.527220   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.527467   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
362.527707   [threads] resume_one_thread: leaving LWP 371 stopped
362.527944   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
362.528192   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.528438   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
362.528672   [threads] resume_one_thread: leaving LWP 372 stopped
362.528918   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
362.529167   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.529420   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
362.529653   [threads] resume_one_thread: leaving LWP 373 stopped
362.529894   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
362.530214   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.530472   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
362.530712   [threads] resume_one_thread: leaving LWP 374 stopped
362.530956   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
362.531201   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.531447   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
362.531679   [threads] resume_one_thread: leaving LWP 375 stopped
362.531925   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
362.532176   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.532423   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
362.532656   [threads] resume_one_thread: leaving LWP 376 stopped
362.532897   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
362.533194   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.533446   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
362.533681   [threads] resume_one_thread: leaving LWP 377 stopped
362.533919   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
362.534171   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.534419   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
362.534653   [threads] resume_one_thread: leaving LWP 378 stopped
362.534890   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
362.535138   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.535387   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
362.535622   [threads] resume_one_thread: leaving LWP 379 stopped
362.535858   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
362.536110   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.536357   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
362.536593   [threads] resume_one_thread: leaving LWP 380 stopped
362.536831   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
362.537072   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.537323   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
362.537554   [threads] resume_one_thread: leaving LWP 381 stopped
362.537791   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
362.538033   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.538288   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
362.538520   [threads] resume_one_thread: leaving LWP 382 stopped
362.538761   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
362.539015   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.539269   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
362.539511   [threads] resume_one_thread: leaving LWP 383 stopped
362.539749   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
362.539999   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.540312   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
362.540550   [threads] resume_one_thread: leaving LWP 384 stopped
362.540786   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
362.541033   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.541279   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
362.541520   [threads] resume_one_thread: leaving LWP 385 stopped
362.541758   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
362.542005   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.542252   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
362.542505   [threads] resume_one_thread: leaving LWP 386 stopped
362.542747   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
362.542993   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.543241   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
362.543487   [threads] resume_one_thread: leaving LWP 387 stopped
362.543758   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
362.544020   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.544268   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
362.544513   [threads] resume_one_thread: leaving LWP 388 stopped
362.544751   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
362.545003   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.545252   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
362.545498   [threads] resume_one_thread: leaving LWP 389 stopped
362.545740   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
362.545990   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.546236   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
362.546467   [threads] resume_one_thread: leaving LWP 390 stopped
362.546707   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
362.546953   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.550736   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
362.551002   [threads] resume_one_thread: leaving LWP 391 stopped
362.551580   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
362.551828   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.552399   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
362.553058   [threads] resume_one_thread: leaving LWP 392 stopped
362.553318   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
362.553551   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.554097   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
362.554434   [threads] resume_one_thread: leaving LWP 393 stopped
362.554971   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
362.555206   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.555838   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
362.556371   [threads] resume_one_thread: leaving LWP 394 stopped
362.556620   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
362.557232   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.557489   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
362.558011   [threads] resume_one_thread: leaving LWP 395 stopped
362.558241   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
362.558865   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.559100   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
362.559649   [threads] resume_one_thread: leaving LWP 396 stopped
362.559877   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
362.560479   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.560717   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
362.561354   [threads] resume_one_thread: leaving LWP 397 stopped
362.561587   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
362.561821   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.562368   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
362.562590   [threads] resume_one_thread: leaving LWP 398 stopped
362.563216   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
362.563455   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.564008   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
362.564236   [threads] resume_one_thread: leaving LWP 399 stopped
362.564856   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
362.565094   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.565630   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
362.565853   [threads] resume_one_thread: leaving LWP 400 stopped
362.566447   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
362.566686   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.567224   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
362.567449   [threads] resume_one_thread: leaving LWP 401 stopped
362.567992   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
362.568229   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.568765   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
362.569275   [threads] resume_one_thread: leaving LWP 403 stopped
362.569521   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
362.570168   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.570425   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
362.570650   [threads] resume_one_thread: leaving LWP 404 stopped
362.571222   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
362.571462   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.572026   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
362.572254   [threads] resume_one_thread: leaving LWP 405 stopped
362.572853   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
362.573113   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.573347   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
362.573896   [threads] resume_one_thread: leaving LWP 406 stopped
362.574123   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
362.574735   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.574974   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
362.575513   [threads] resume_one_thread: leaving LWP 407 stopped
362.575741   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
362.576344   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.576893   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
362.577122   [threads] resume_one_thread: leaving LWP 408 stopped
362.577642   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
362.577880   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.578416   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
362.578641   [threads] resume_one_thread: leaving LWP 409 stopped
362.579168   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
362.579776   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
362.580051   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
362.580285   [threads] resume_one_thread: leaving LWP 410 stopped
362.580555   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
362.580830   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.581090   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
362.581472   [threads] resume_one_thread: leaving LWP 411 stopped
362.581724   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
362.581994   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.582359   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
362.582685   [threads] resume_one_thread: leaving LWP 412 stopped
362.582947   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
362.583223   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.583577   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
362.583852   [threads] resume_one_thread: leaving LWP 414 stopped
362.584100   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
362.584379   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.584848   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
362.585121   [threads] resume_one_thread: leaving LWP 433 stopped
362.585387   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
362.585646   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.586033   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
362.586281   [threads] resume_one_thread: leaving LWP 436 stopped
362.586548   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
362.586945   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.587205   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
362.587458   [threads] resume_one_thread: leaving LWP 437 stopped
362.587722   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
362.588222   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.588495   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
362.588916   [threads] resume_one_thread: leaving LWP 483 stopped
362.589189   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
362.589460   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.589745   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
362.590300   [threads] resume_one_thread: leaving LWP 484 stopped
362.590560   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
362.590841   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.591115   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
362.591357   [threads] resume_one_thread: leaving LWP 493 stopped
362.591695   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
362.592070   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.592342   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
362.592589   [threads] resume_one_thread: leaving LWP 508 stopped
362.592968   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
362.593247   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.593578   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
362.593843   [threads] resume_one_thread: leaving LWP 613 stopped
362.594105   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
362.594375   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.594719   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
362.595092   [threads] resume_one_thread: leaving LWP 624 stopped
362.595343   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
362.595617   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.596018   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
362.596396   [threads] resume_one_thread: leaving LWP 655 stopped
362.596665   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
362.596945   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.597344   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
362.597612   [threads] resume_one_thread: leaving LWP 660 stopped
362.597982   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
362.598256   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.598637   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
362.599683   [threads] resume_one_thread: leaving LWP 661 stopped
362.599774   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
362.599849   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.599919   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
362.599978   [threads] resume_one_thread: leaving LWP 1074 stopped
362.600118   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
362.600191   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.600260   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
362.600317   [threads] resume_one_thread: leaving LWP 1118 stopped
362.600379   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
362.600446   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.600513   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
362.600573   [threads] resume_one_thread: leaving LWP 1293 stopped
362.600637   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 1
362.600703   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.600771   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: thread->last_resume_kind 0, line 4717
362.600830   [threads] resume_one_thread: leaving LWP 3027 stopped
362.600893   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 1
362.600959   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.601025   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: thread->last_resume_kind 0, line 4717
362.601084   [threads] resume_one_thread: leaving LWP 3028 stopped
362.601147   [threads] operator(): [zyan1]  thread LWP 3031.3031 is going to call resume_one_thread, leave_all_stopped 1
362.601215   [threads] resume_one_thread: [zyan1]  thread LWP 3031.3031: 4624
362.601274 [threads] resume: exit
362.601333 [threads] wait_1: enter
362.601394   [threads] wait_1: [<all threads>]
362.601464   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.601545   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.606246   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
362.606374   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.606501   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
362.606565   [threads] wait_for_event_filtered: Got a pending child 410
362.606620   [threads] wait_for_event_filtered: Got an event from pending child 410 (2057f)
362.606746   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORKED, child_ptid = 3031.3031.0
362.606820   [threads] wait_1: Hit a non-gdbserver trap event.
362.607008   [threads] stop_all_lwps: enter
362.607064     [threads] stop_all_lwps: stop, except=none
362.607167     [threads] wait_for_sigstop: pulling events
362.607324     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.607767     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
362.608129     [threads] operator(): leader_pid=3031, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.608274     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
362.608379     [threads] stop_all_lwps: setting stopping_threads back to !stopping
362.608437   [threads] stop_all_lwps: exit
362.608682   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
362.608757   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
362.608825   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
362.608889   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
362.608953   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
362.609018   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
362.609082   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
362.609145   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
362.609208   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
362.609273   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
362.609336   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
362.609399   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
362.609461   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
362.609524   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
362.609587   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
362.609649   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
362.609712   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
362.609774   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
362.609837   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
362.609900   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
362.609963   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
362.610118   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
362.612142   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
362.612922   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
362.613371   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
362.613464   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
362.615036   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
362.616594   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
362.618101   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
362.619591   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
362.621171   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
362.621814   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
362.622106   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
362.622770   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
362.623034   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
362.623681   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
362.624295   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
362.624597   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
362.625219   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
362.625489   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
362.626101   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
362.626371   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
362.626985   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
362.627243   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
362.627855   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
362.628468   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
362.628735   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
362.629349   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
362.629615   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
362.630291   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
362.630932   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
362.631226   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
362.631856   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
362.632454   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
362.632746   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
362.633345   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
362.633650   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
362.634290   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
362.634552   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
362.635171   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
362.635431   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
362.636070   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
362.636701   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
362.636983   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
362.637609   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
362.637894   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
362.638514   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
362.638773   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
362.639386   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
362.639989   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
362.640678   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
362.640971   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
362.641580   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
362.641846   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
362.642454   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
362.642732   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3031 needs to move out of the jump pad... no
362.643598   [threads] wait_1: ret = LWP 316.410, status->kind = VFORKED, child_ptid = 3031.3031.0
362.644257 [threads] wait_1: exit
362.644984 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:5
362.646650 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.647690 [threads] handle_serial_event: handling possible serial event
362.648076 [threads] write_memory: Writing 0023 to 0x0045b444 in process 316
362.649735 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.650494 [threads] handle_serial_event: handling possible serial event
362.650871 [threads] write_memory: Writing 7047 to 0x4e90bb30 in process 316
362.652231 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.652877 [threads] handle_serial_event: handling possible serial event
362.653239 [threads] write_memory: Writing 38b5 to 0x4e98a7d8 in process 316
362.654573 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.655209 [threads] handle_serial_event: handling possible serial event
362.655569 [threads] write_memory: Writing 08b5 to 0x4ea6e998 in process 316
362.661605 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.662258 [threads] handle_serial_event: handling possible serial event
Detaching from process 3031
362.663080 [threads] stop_tracing: Tracing is already off, ignoring
362.663394 [threads] stop_all_lwps: enter
362.663999   [threads] stop_all_lwps: stop, except=none
362.664701   [threads] wait_for_sigstop: pulling events
362.665065   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.666106   [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
362.667413   [threads] operator(): leader_pid=3031, leader_lp!=NULL=1, num_lwps=1, zombie=0
362.668450   [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
362.669122   [threads] stop_all_lwps: setting stopping_threads back to !stopping
362.669741 [threads] stop_all_lwps: exit
362.670138 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
362.670822 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
362.671468 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
362.671732 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
362.672352 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
362.672949 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
362.673253 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
362.673882 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
362.674153 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
362.674836 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
362.675132 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
362.675839 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
362.676123 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
362.676786 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
362.677039 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
362.677639 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
362.677889 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
362.678467 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
362.679055 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
362.679318 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
362.679977 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
362.680652 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
362.680959 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
362.681549 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
362.681810 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
362.682389 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
362.682647 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
362.683227 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
362.683803 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
362.684087 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
362.684659 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
362.684937 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
362.685514 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
362.685772 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
362.686349 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
362.686601 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
362.687174 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
362.687741 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
362.688000 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
362.688607 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
362.688860 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
362.689463 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
362.690098 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
362.690368 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
362.690956 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
362.691205 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
362.691794 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
362.692334 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
362.692606 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
362.693160 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
362.693428 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
362.694019 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
362.694769 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
362.695055 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
362.695784 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
362.696066 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
362.696783 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
362.697056 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
362.697797 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
362.698079 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
362.698747 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
362.699035 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
362.699646 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
362.699898 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
362.700599 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
362.700856 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
362.701427 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
362.701675 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
362.702232 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
362.702779 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
362.703034 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
362.703577 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
362.704099 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
362.704370 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
362.704913 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
362.705166 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
362.705705 [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3031 needs to move out of the jump pad... no
362.707011 [threads] detach_one_lwp: PTRACE_DETACH (LWP 3031.3031, Unknown signal 0, 0) (OK)
362.708132 [threads] delete_lwp: deleting 3031
362.708707 [threads] unstop_all_lwps: enter
362.709470   [threads] unstop_all_lwps: except=nullptr
362.710199   [threads] proceed_one_lwp: lwp 316
362.716001   [threads] proceed_one_lwp:    client wants LWP to remain 316 stopped
362.716833   [threads] proceed_one_lwp: lwp 349
362.717137   [threads] proceed_one_lwp:    client wants LWP to remain 349 stopped
362.717813   [threads] proceed_one_lwp: lwp 350
362.718065   [threads] proceed_one_lwp:    client wants LWP to remain 350 stopped
362.718605   [threads] proceed_one_lwp: lwp 351
362.718884   [threads] proceed_one_lwp:    client wants LWP to remain 351 stopped
362.719395   [threads] proceed_one_lwp: lwp 352
362.719910   [threads] proceed_one_lwp:    client wants LWP to remain 352 stopped
362.720702   [threads] proceed_one_lwp: lwp 357
362.720950   [threads] proceed_one_lwp:    client wants LWP to remain 357 stopped
362.721619   [threads] proceed_one_lwp: lwp 358
362.721906   [threads] proceed_one_lwp:    client wants LWP to remain 358 stopped
362.722663   [threads] proceed_one_lwp: lwp 359
362.722905   [threads] proceed_one_lwp:    client wants LWP to remain 359 stopped
362.723543   [threads] proceed_one_lwp: lwp 360
362.723877   [threads] proceed_one_lwp:    client wants LWP to remain 360 stopped
362.724545   [threads] proceed_one_lwp: lwp 361
362.724837   [threads] proceed_one_lwp:    client wants LWP to remain 361 stopped
362.725541   [threads] proceed_one_lwp: lwp 364
362.725830   [threads] proceed_one_lwp:    client wants LWP to remain 364 stopped
362.726440   [threads] proceed_one_lwp: lwp 365
362.726721   [threads] proceed_one_lwp:    client wants LWP to remain 365 stopped
362.727329   [threads] proceed_one_lwp: lwp 366
362.727608   [threads] proceed_one_lwp:    client wants LWP to remain 366 stopped
362.727854   [threads] proceed_one_lwp: lwp 367
362.728450   [threads] proceed_one_lwp:    client wants LWP to remain 367 stopped
362.729251   [threads] proceed_one_lwp: lwp 368
362.729548   [threads] proceed_one_lwp:    client wants LWP to remain 368 stopped
362.730325   [threads] proceed_one_lwp: lwp 369
362.730674   [threads] proceed_one_lwp:    client wants LWP to remain 369 stopped
362.730972   [threads] proceed_one_lwp: lwp 370
362.731686   [threads] proceed_one_lwp:    client wants LWP to remain 370 stopped
362.731968   [threads] proceed_one_lwp: lwp 371
362.732618   [threads] proceed_one_lwp:    client wants LWP to remain 371 stopped
362.732878   [threads] proceed_one_lwp: lwp 372
362.733556   [threads] proceed_one_lwp:    client wants LWP to remain 372 stopped
362.733871   [threads] proceed_one_lwp: lwp 373
362.734540   [threads] proceed_one_lwp:    client wants LWP to remain 373 stopped
362.734809   [threads] proceed_one_lwp: lwp 374
362.735553   [threads] proceed_one_lwp:    client wants LWP to remain 374 stopped
362.735851   [threads] proceed_one_lwp: lwp 375
362.736508   [threads] proceed_one_lwp:    client wants LWP to remain 375 stopped
362.736753   [threads] proceed_one_lwp: lwp 376
362.737554   [threads] proceed_one_lwp:    client wants LWP to remain 376 stopped
362.737834   [threads] proceed_one_lwp: lwp 377
362.738521   [threads] proceed_one_lwp:    client wants LWP to remain 377 stopped
362.738787   [threads] proceed_one_lwp: lwp 378
362.739370   [threads] proceed_one_lwp:    client wants LWP to remain 378 stopped
362.739687   [threads] proceed_one_lwp: lwp 379
362.740506   [threads] proceed_one_lwp:    client wants LWP to remain 379 stopped
362.740789   [threads] proceed_one_lwp: lwp 380
362.741037   [threads] proceed_one_lwp:    client wants LWP to remain 380 stopped
362.741714   [threads] proceed_one_lwp: lwp 381
362.741966   [threads] proceed_one_lwp:    client wants LWP to remain 381 stopped
362.742561   [threads] proceed_one_lwp: lwp 382
362.742864   [threads] proceed_one_lwp:    client wants LWP to remain 382 stopped
362.743557   [threads] proceed_one_lwp: lwp 383
362.743883   [threads] proceed_one_lwp:    client wants LWP to remain 383 stopped
362.744383   [threads] proceed_one_lwp: lwp 384
362.745133   [threads] proceed_one_lwp:    client wants LWP to remain 384 stopped
362.745434   [threads] proceed_one_lwp: lwp 385
362.746085   [threads] proceed_one_lwp:    client wants LWP to remain 385 stopped
362.746383   [threads] proceed_one_lwp: lwp 386
362.747047   [threads] proceed_one_lwp:    client wants LWP to remain 386 stopped
362.747352   [threads] proceed_one_lwp: lwp 387
362.747997   [threads] proceed_one_lwp:    client wants LWP to remain 387 stopped
362.748306   [threads] proceed_one_lwp: lwp 388
362.748935   [threads] proceed_one_lwp:    client wants LWP to remain 388 stopped
362.749256   [threads] proceed_one_lwp: lwp 389
362.749855   [threads] proceed_one_lwp:    client wants LWP to remain 389 stopped
362.750250   [threads] proceed_one_lwp: lwp 390
362.750930   [threads] proceed_one_lwp:    client wants LWP to remain 390 stopped
362.751196   [threads] proceed_one_lwp: lwp 391
362.751812   [threads] proceed_one_lwp:    client wants LWP to remain 391 stopped
362.752133   [threads] proceed_one_lwp: lwp 392
362.752845   [threads] proceed_one_lwp:    client wants LWP to remain 392 stopped
362.753120   [threads] proceed_one_lwp: lwp 393
362.753766   [threads] proceed_one_lwp:    client wants LWP to remain 393 stopped
362.754068   [threads] proceed_one_lwp: lwp 394
362.754703   [threads] proceed_one_lwp:    client wants LWP to remain 394 stopped
362.755022   [threads] proceed_one_lwp: lwp 395
362.755703   [threads] proceed_one_lwp:    client wants LWP to remain 395 stopped
362.756019   [threads] proceed_one_lwp: lwp 396
362.756289   [threads] proceed_one_lwp:    client wants LWP to remain 396 stopped
362.756967   [threads] proceed_one_lwp: lwp 397
362.757225   [threads] proceed_one_lwp:    client wants LWP to remain 397 stopped
362.757927   [threads] proceed_one_lwp: lwp 398
362.758179   [threads] proceed_one_lwp:    client wants LWP to remain 398 stopped
362.758891   [threads] proceed_one_lwp: lwp 399
362.759154   [threads] proceed_one_lwp:    client wants LWP to remain 399 stopped
362.760082   [threads] proceed_one_lwp: lwp 400
362.760356   [threads] proceed_one_lwp:    client wants LWP to remain 400 stopped
362.761156   [threads] proceed_one_lwp: lwp 401
362.761405   [threads] proceed_one_lwp:    client wants LWP to remain 401 stopped
362.762123   [threads] proceed_one_lwp: lwp 403
362.762372   [threads] proceed_one_lwp:    client wants LWP to remain 403 stopped
362.763048   [threads] proceed_one_lwp: lwp 404
362.763339   [threads] proceed_one_lwp:    client wants LWP to remain 404 stopped
362.764045   [threads] proceed_one_lwp: lwp 405
362.764352   [threads] proceed_one_lwp:    client wants LWP to remain 405 stopped
362.764657   [threads] proceed_one_lwp: lwp 406
362.765381   [threads] proceed_one_lwp:    client wants LWP to remain 406 stopped
362.770217   [threads] proceed_one_lwp: lwp 407
362.771500   [threads] proceed_one_lwp:    client wants LWP to remain 407 stopped
362.772313   [threads] proceed_one_lwp: lwp 408
362.772592   [threads] proceed_one_lwp:    client wants LWP to remain 408 stopped
362.773203   [threads] proceed_one_lwp: lwp 409
362.773489   [threads] proceed_one_lwp:    client wants LWP to remain 409 stopped
362.773728   [threads] proceed_one_lwp: lwp 410
362.774318   [threads] proceed_one_lwp:    client wants LWP to remain 410 stopped
362.774556   [threads] proceed_one_lwp: lwp 411
362.775098   [threads] proceed_one_lwp:    client wants LWP to remain 411 stopped
362.775338   [threads] proceed_one_lwp: lwp 412
362.775902   [threads] proceed_one_lwp:    client wants LWP to remain 412 stopped
362.776140   [threads] proceed_one_lwp: lwp 414
362.776677   [threads] proceed_one_lwp:    client wants LWP to remain 414 stopped
362.777183   [threads] proceed_one_lwp: lwp 433
362.777440   [threads] proceed_one_lwp:    client wants LWP to remain 433 stopped
362.777959   [threads] proceed_one_lwp: lwp 436
362.778191   [threads] proceed_one_lwp:    client wants LWP to remain 436 stopped
362.779092   [threads] proceed_one_lwp: lwp 437
362.779329   [threads] proceed_one_lwp:    client wants LWP to remain 437 stopped
362.779563   [threads] proceed_one_lwp: lwp 483
362.779787   [threads] proceed_one_lwp:    client wants LWP to remain 483 stopped
362.780474   [threads] proceed_one_lwp: lwp 484
362.780713   [threads] proceed_one_lwp:    client wants LWP to remain 484 stopped
362.780945   [threads] proceed_one_lwp: lwp 493
362.781516   [threads] proceed_one_lwp:    client wants LWP to remain 493 stopped
362.781755   [threads] proceed_one_lwp: lwp 508
362.782286   [threads] proceed_one_lwp:    client wants LWP to remain 508 stopped
362.782526   [threads] proceed_one_lwp: lwp 613
362.783056   [threads] proceed_one_lwp:    client wants LWP to remain 613 stopped
362.783292   [threads] proceed_one_lwp: lwp 624
362.783829   [threads] proceed_one_lwp:    client wants LWP to remain 624 stopped
362.784335   [threads] proceed_one_lwp: lwp 655
362.784591   [threads] proceed_one_lwp:    client wants LWP to remain 655 stopped
362.785117   [threads] proceed_one_lwp: lwp 660
362.785360   [threads] proceed_one_lwp:    client wants LWP to remain 660 stopped
362.785884   [threads] proceed_one_lwp: lwp 661
362.786117   [threads] proceed_one_lwp:    client wants LWP to remain 661 stopped
362.786647   [threads] proceed_one_lwp: lwp 1074
362.787149   [threads] proceed_one_lwp:    client wants LWP to remain 1074 stopped
362.787453   [threads] proceed_one_lwp: lwp 1118
362.788002   [threads] proceed_one_lwp:    client wants LWP to remain 1118 stopped
362.788248   [threads] proceed_one_lwp: lwp 1293
362.788796   [threads] proceed_one_lwp:    client wants LWP to remain 1293 stopped
362.789035   [threads] proceed_one_lwp: lwp 3027
362.789613   [threads] proceed_one_lwp:    client wants LWP to remain 3027 stopped
362.789852   [threads] proceed_one_lwp: lwp 3028
362.790208   [threads] proceed_one_lwp:    client wants LWP to remain 3028 stopped
362.790313 [threads] unstop_all_lwps: exit
362.791310 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.791483 [threads] handle_serial_event: handling possible serial event
362.791958 [threads] resume: enter
362.792415   [threads] thread_needs_step_over: Need step over [LWP 316]? Ignoring, should remain stopped
362.792719   [threads] thread_needs_step_over: Need step over [LWP 349]? Ignoring, should remain stopped
362.792804   [threads] thread_needs_step_over: Need step over [LWP 350]? Ignoring, should remain stopped
362.792972   [threads] thread_needs_step_over: Need step over [LWP 351]? Ignoring, should remain stopped
362.793051   [threads] thread_needs_step_over: Need step over [LWP 352]? Ignoring, should remain stopped
362.793123   [threads] thread_needs_step_over: Need step over [LWP 357]? Ignoring, should remain stopped
362.793195   [threads] thread_needs_step_over: Need step over [LWP 358]? Ignoring, should remain stopped
362.793268   [threads] thread_needs_step_over: Need step over [LWP 359]? Ignoring, should remain stopped
362.793341   [threads] thread_needs_step_over: Need step over [LWP 360]? Ignoring, should remain stopped
362.793413   [threads] thread_needs_step_over: Need step over [LWP 361]? Ignoring, should remain stopped
362.793503   [threads] thread_needs_step_over: Need step over [LWP 364]? Ignoring, should remain stopped
362.793700   [threads] thread_needs_step_over: Need step over [LWP 365]? Ignoring, should remain stopped
362.793950   [threads] thread_needs_step_over: Need step over [LWP 366]? Ignoring, should remain stopped
362.794222   [threads] thread_needs_step_over: Need step over [LWP 367]? Ignoring, should remain stopped
362.794471   [threads] thread_needs_step_over: Need step over [LWP 368]? Ignoring, should remain stopped
362.794736   [threads] thread_needs_step_over: Need step over [LWP 369]? Ignoring, should remain stopped
362.794995   [threads] thread_needs_step_over: Need step over [LWP 370]? Ignoring, should remain stopped
362.795249   [threads] thread_needs_step_over: Need step over [LWP 371]? Ignoring, should remain stopped
362.795584   [threads] thread_needs_step_over: Need step over [LWP 372]? Ignoring, should remain stopped
362.795851   [threads] thread_needs_step_over: Need step over [LWP 373]? Ignoring, should remain stopped
362.796117   [threads] thread_needs_step_over: Need step over [LWP 374]? Ignoring, should remain stopped
362.796472   [threads] thread_needs_step_over: Need step over [LWP 375]? Ignoring, should remain stopped
362.796755   [threads] thread_needs_step_over: Need step over [LWP 376]? Ignoring, should remain stopped
362.797007   [threads] thread_needs_step_over: Need step over [LWP 377]? Ignoring, should remain stopped
362.797275   [threads] thread_needs_step_over: Need step over [LWP 378]? Ignoring, should remain stopped
362.797537   [threads] thread_needs_step_over: Need step over [LWP 379]? Ignoring, should remain stopped
362.797787   [threads] thread_needs_step_over: Need step over [LWP 380]? Ignoring, should remain stopped
362.798051   [threads] thread_needs_step_over: Need step over [LWP 381]? Ignoring, should remain stopped
362.798315   [threads] thread_needs_step_over: Need step over [LWP 382]? Ignoring, should remain stopped
362.798563   [threads] thread_needs_step_over: Need step over [LWP 383]? Ignoring, should remain stopped
362.798825   [threads] thread_needs_step_over: Need step over [LWP 384]? Ignoring, should remain stopped
362.799090   [threads] thread_needs_step_over: Need step over [LWP 385]? Ignoring, should remain stopped
362.799343   [threads] thread_needs_step_over: Need step over [LWP 386]? Ignoring, should remain stopped
362.799609   [threads] thread_needs_step_over: Need step over [LWP 387]? Ignoring, should remain stopped
362.799874   [threads] thread_needs_step_over: Need step over [LWP 388]? Ignoring, should remain stopped
362.800533   [threads] thread_needs_step_over: Need step over [LWP 389]? Ignoring, should remain stopped
362.800794   [threads] thread_needs_step_over: Need step over [LWP 390]? Ignoring, should remain stopped
362.801078   [threads] thread_needs_step_over: Need step over [LWP 391]? Ignoring, should remain stopped
362.801420   [threads] thread_needs_step_over: Need step over [LWP 392]? Ignoring, should remain stopped
362.801690   [threads] thread_needs_step_over: Need step over [LWP 393]? Ignoring, should remain stopped
362.801941   [threads] thread_needs_step_over: Need step over [LWP 394]? Ignoring, should remain stopped
362.802206   [threads] thread_needs_step_over: Need step over [LWP 395]? Ignoring, should remain stopped
362.802472   [threads] thread_needs_step_over: Need step over [LWP 396]? Ignoring, should remain stopped
362.802721   [threads] thread_needs_step_over: Need step over [LWP 397]? Ignoring, should remain stopped
362.802988   [threads] thread_needs_step_over: Need step over [LWP 398]? Ignoring, should remain stopped
362.803254   [threads] thread_needs_step_over: Need step over [LWP 399]? Ignoring, should remain stopped
362.803672   [threads] thread_needs_step_over: Need step over [LWP 400]? Ignoring, should remain stopped
362.803943   [threads] thread_needs_step_over: Need step over [LWP 401]? Ignoring, should remain stopped
362.804204   [threads] thread_needs_step_over: Need step over [LWP 403]? Ignoring, should remain stopped
362.804455   [threads] thread_needs_step_over: Need step over [LWP 404]? Ignoring, should remain stopped
362.804721   [threads] thread_needs_step_over: Need step over [LWP 405]? Ignoring, should remain stopped
362.805202   [threads] thread_needs_step_over: Need step over [LWP 406]? Ignoring, should remain stopped
362.805458   [threads] thread_needs_step_over: Need step over [LWP 407]? Ignoring, should remain stopped
362.805726   [threads] thread_needs_step_over: Need step over [LWP 408]? Ignoring, should remain stopped
362.806119   [threads] thread_needs_step_over: Need step over [LWP 409]? Ignoring, should remain stopped
362.806407   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.806759   [threads] get_pc: pc is 0x4e9fb3e8
362.807049   [threads] thread_needs_step_over: Need step over [LWP 410]? No, no breakpoint found at 0x4e9fb3e8
362.807323   [threads] thread_needs_step_over: Need step over [LWP 411]? Ignoring, should remain stopped
362.807572   [threads] thread_needs_step_over: Need step over [LWP 412]? Ignoring, should remain stopped
362.807838   [threads] thread_needs_step_over: Need step over [LWP 414]? Ignoring, should remain stopped
362.808098   [threads] thread_needs_step_over: Need step over [LWP 433]? Ignoring, should remain stopped
362.808349   [threads] thread_needs_step_over: Need step over [LWP 436]? Ignoring, should remain stopped
362.808612   [threads] thread_needs_step_over: Need step over [LWP 437]? Ignoring, should remain stopped
362.808878   [threads] thread_needs_step_over: Need step over [LWP 483]? Ignoring, should remain stopped
362.809126   [threads] thread_needs_step_over: Need step over [LWP 484]? Ignoring, should remain stopped
362.809391   [threads] thread_needs_step_over: Need step over [LWP 493]? Ignoring, should remain stopped
362.809654   [threads] thread_needs_step_over: Need step over [LWP 508]? Ignoring, should remain stopped
362.809908   [threads] thread_needs_step_over: Need step over [LWP 613]? Ignoring, should remain stopped
362.810272   [threads] thread_needs_step_over: Need step over [LWP 624]? Ignoring, should remain stopped
362.810541   [threads] thread_needs_step_over: Need step over [LWP 655]? Ignoring, should remain stopped
362.810827   [threads] thread_needs_step_over: Need step over [LWP 660]? Ignoring, should remain stopped
362.811083   [threads] thread_needs_step_over: Need step over [LWP 661]? Ignoring, should remain stopped
362.811353   [threads] thread_needs_step_over: Need step over [LWP 1074]? Ignoring, should remain stopped
362.811604   [threads] thread_needs_step_over: Need step over [LWP 1118]? Ignoring, should remain stopped
362.812204   [threads] thread_needs_step_over: Need step over [LWP 1293]? Ignoring, should remain stopped
362.812489   [threads] thread_needs_step_over: Need step over [LWP 3027]? Ignoring, should remain stopped
362.812744   [threads] thread_needs_step_over: Need step over [LWP 3028]? Ignoring, should remain stopped
362.813010   [threads] resume: Resuming, no pending status or step over needed
362.813285   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 0
362.813558   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4624
362.813811   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 0
362.814086   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4624
362.814351   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 0
362.814622   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4624
362.814872   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 0
362.815142   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4624
362.815514   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 0
362.815843   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4624
362.816102   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 0
362.816378   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4624
362.816641   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 0
362.817013   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4624
362.817285   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 0
362.817662   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4624
362.817932   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 0
362.818212   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4624
362.818553   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 0
362.818959   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4624
362.819234   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 0
362.819573   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4624
362.819857   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 0
362.820211   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4624
362.820484   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 0
362.820754   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4624
362.821002   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 0
362.821432   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4624
362.821682   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 0
362.821907   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4624
362.822134   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 0
362.822578   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4624
362.822802   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 0
362.823030   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4624
362.823246   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 0
362.823472   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4624
362.823692   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 0
362.823916   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4624
362.824136   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 0
362.824358   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4624
362.824585   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 0
362.824812   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4624
362.825035   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 0
362.825263   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4624
362.825599   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 0
362.825829   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4624
362.826064   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 0
362.826330   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4624
362.826573   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 0
362.827091   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4624
362.827253   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 0
362.827339   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4624
362.827420   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 0
362.827500   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4624
362.827585   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 0
362.827685   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4624
362.827765   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 0
362.827844   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4624
362.827922   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 0
362.828000   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4624
362.828075   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 0
362.828152   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4624
362.828228   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 0
362.828305   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4624
362.828383   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 0
362.828569   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4624
362.828652   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 0
362.828731   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4624
362.828915   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 0
362.829001   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4624
362.829077   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 0
362.829153   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4624
362.829350   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 0
362.829615   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4624
362.829891   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 0
362.830354   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4624
362.830632   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 0
362.830892   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4624
362.831161   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 0
362.831431   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4624
362.831680   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 0
362.832079   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4624
362.832333   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 0
362.832730   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4624
362.833000   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 0
362.833258   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4624
362.833624   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 0
362.834000   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4624
362.834271   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 0
362.834538   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4624
362.834883   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 0
362.835155   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4624
362.835438   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 0
362.835696   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4624
362.835965   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 0
362.836286   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4624
362.836553   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 0
362.836880   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4624
362.837148   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 0
362.837401   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4624
362.837667   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 0
362.837938   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4624
362.838202   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 0
362.838457   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4624
362.838722   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 0
362.838991   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4624
362.839257   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 0
362.839508   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4624
362.839776   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 0
362.840119   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4624
362.840403   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 0
362.840677   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 0
362.840929   [threads] resume_one_thread: resuming LWP 410
362.841186   [threads] proceed_one_lwp: lwp 410
362.841446   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.841705   [threads] resume_one_lwp_throw:   continue from pc 0x4e9fb3e8
362.841957   [threads] resume_one_lwp_throw: Resuming lwp 410 (continue, signal 0, stop not expected)
sigchld_handler
362.842590   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.410
362.842957   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 0
362.843240   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4624
362.843498   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 0
362.843765   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4624
362.844026   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 0
362.844295   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4624
362.844548   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 0
362.844820   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4624
362.845381   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 0
362.845691   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4624
362.845964   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 0
362.846218   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4624
362.846598   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 0
362.846857   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4624
362.847121   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 0
362.847389   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4624
362.847656   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 0
362.847908   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4624
362.848327   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 0
362.848605   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4624
362.848856   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 0
362.849244   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4624
362.849500   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 0
362.849776   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4624
362.850212   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 0
362.850499   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4624
362.850758   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 0
362.851031   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4624
362.851291   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 0
362.851561   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4624
362.851811   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 0
362.852486   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4624
362.852752   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 0
362.853021   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4624
362.853289   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 0
362.853557   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4624
362.853957   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 0
362.854234   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4624
362.854487   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 0
362.854873   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4624
362.855143 [threads] resume: exit
362.855396 [threads] wait_1: enter
362.855637   [threads] wait_1: [<all threads>]
362.856273   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 410, ERRNO-OK
362.856649   [threads] wait_for_event_filtered: waitpid 410 received SIGTRAP - Trace/breakpoint trap (stopped)
362.857191   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.857460   [threads] get_pc: pc is 0x4e9fb3e8
362.857734   [threads] linux_get_pc_32bit: stop pc is 0x4e9fb3e8
362.857995   [threads] get_pc: pc is 0x4e9fb3e8
362.858428   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.858985   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
362.859264   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.410, last_resume_kind 0, lp->stop_reason 0
362.859388   [threads] wait_1: LWP 410: extended event with waitstatus status->kind = VFORK_DONE
362.859477   [threads] wait_1: Hit a non-gdbserver trap event.
362.859683   [threads] stop_all_lwps: enter
362.859831     [threads] stop_all_lwps: stop, except=none
362.860473     [threads] wait_for_sigstop: pulling events
362.860835     [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.861502     [threads] operator(): leader_pid=316, leader_lp!=NULL=1, num_lwps=76, zombie=0
362.861756     [threads] wait_for_event_filtered: exit (no unwaited-for LWP)
362.862083     [threads] stop_all_lwps: setting stopping_threads back to !stopping
362.862351   [threads] stop_all_lwps: exit
362.862799   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 316 needs to move out of the jump pad... no
362.863085   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 349 needs to move out of the jump pad... no
362.863360   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 350 needs to move out of the jump pad... no
362.863614   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 351 needs to move out of the jump pad... no
362.863881   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 352 needs to move out of the jump pad... no
362.864145   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 357 needs to move out of the jump pad... no
362.864402   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 358 needs to move out of the jump pad... no
362.864668   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 359 needs to move out of the jump pad... no
362.864935   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 360 needs to move out of the jump pad... no
362.865201   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 361 needs to move out of the jump pad... no
362.865458   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 364 needs to move out of the jump pad... no
362.865879   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 365 needs to move out of the jump pad... no
362.866154   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 366 needs to move out of the jump pad... no
362.866427   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 367 needs to move out of the jump pad... no
362.866682   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 368 needs to move out of the jump pad... no
362.866953   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 369 needs to move out of the jump pad... no
362.867220   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 370 needs to move out of the jump pad... no
362.867477   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 371 needs to move out of the jump pad... no
362.867744   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 372 needs to move out of the jump pad... no
362.868012   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 373 needs to move out of the jump pad... no
362.868281   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 374 needs to move out of the jump pad... no
362.868539   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 375 needs to move out of the jump pad... no
362.868805   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 376 needs to move out of the jump pad... no
362.869072   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 377 needs to move out of the jump pad... no
362.869324   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 378 needs to move out of the jump pad... no
362.869592   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 379 needs to move out of the jump pad... no
362.870420   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 380 needs to move out of the jump pad... no
362.870705   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 381 needs to move out of the jump pad... no
362.871068   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 382 needs to move out of the jump pad... no
362.871436   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 383 needs to move out of the jump pad... no
362.871718   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 384 needs to move out of the jump pad... no
362.871986   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 385 needs to move out of the jump pad... no
362.872321   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 386 needs to move out of the jump pad... no
362.872655   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 387 needs to move out of the jump pad... no
362.872913   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 388 needs to move out of the jump pad... no
362.873188   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 389 needs to move out of the jump pad... no
362.873455   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 390 needs to move out of the jump pad... no
362.873730   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 391 needs to move out of the jump pad... no
362.874098   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 392 needs to move out of the jump pad... no
362.874367   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 393 needs to move out of the jump pad... no
362.874620   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 394 needs to move out of the jump pad... no
362.874996   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 395 needs to move out of the jump pad... no
362.875388   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 396 needs to move out of the jump pad... no
362.875674   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 397 needs to move out of the jump pad... no
362.875938   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 398 needs to move out of the jump pad... no
362.876306   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 399 needs to move out of the jump pad... no
362.876549   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 400 needs to move out of the jump pad... no
362.876781   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 401 needs to move out of the jump pad... no
362.877008   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 403 needs to move out of the jump pad... no
362.877348   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 404 needs to move out of the jump pad... no
362.877576   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 405 needs to move out of the jump pad... no
362.877802   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 406 needs to move out of the jump pad... no
362.878028   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 407 needs to move out of the jump pad... no
362.878488   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 408 needs to move out of the jump pad... no
362.878720   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 409 needs to move out of the jump pad... no
362.878950   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 410 needs to move out of the jump pad... no
362.879175   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 411 needs to move out of the jump pad... no
362.879398   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 412 needs to move out of the jump pad... no
362.879626   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 414 needs to move out of the jump pad... no
362.879852   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 433 needs to move out of the jump pad... no
362.880146   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 436 needs to move out of the jump pad... no
362.880381   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 437 needs to move out of the jump pad... no
362.880663   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 483 needs to move out of the jump pad... no
362.880929   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 484 needs to move out of the jump pad... no
362.881165   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 493 needs to move out of the jump pad... no
362.881552   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 508 needs to move out of the jump pad... no
362.881658   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 613 needs to move out of the jump pad... no
362.881742   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 624 needs to move out of the jump pad... no
362.881843   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 655 needs to move out of the jump pad... no
362.881925   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 660 needs to move out of the jump pad... no
362.882004   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 661 needs to move out of the jump pad... no
362.882083   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1074 needs to move out of the jump pad... no
362.882161   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1118 needs to move out of the jump pad... no
362.882239   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 1293 needs to move out of the jump pad... no
362.882316   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3027 needs to move out of the jump pad... no
362.882396   [threads] maybe_move_out_of_jump_pad: Checking whether LWP 3028 needs to move out of the jump pad... no
362.882672   [threads] wait_1: ret = LWP 316.410, status->kind = VFORK_DONE
362.882838 [threads] wait_1: exit
362.883168 [threads] prepare_resume_reply: Writing resume reply for LWP 316.410:7
362.884861 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.885131 [threads] handle_serial_event: handling possible serial event
362.886392 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.886644 [threads] handle_serial_event: handling possible serial event
362.887932 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.888182 [threads] handle_serial_event: handling possible serial event
362.889652 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.889909 [threads] handle_serial_event: handling possible serial event
362.891496 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.891855 [threads] handle_serial_event: handling possible serial event
362.892359 [threads] write_memory: Writing 01de to 0x0045b444 in process 316
362.893375 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.893629 [threads] handle_serial_event: handling possible serial event
362.894678 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.895092 [threads] handle_serial_event: handling possible serial event
362.895498 [threads] write_memory: Writing 01de to 0x4e90bb30 in process 316
362.896376 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.896542 [threads] handle_serial_event: handling possible serial event
362.897536 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.897784 [threads] handle_serial_event: handling possible serial event
362.898196 [threads] write_memory: Writing 01de to 0x4e98a7d8 in process 316
362.899155 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.899401 [threads] handle_serial_event: handling possible serial event
362.900275 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.900524 [threads] handle_serial_event: handling possible serial event
362.900962 [threads] write_memory: Writing 01de to 0x4ea6e998 in process 316
362.901886 [event-loop] handle_file_event: invoking fd file handler `remote-net`
362.902137 [threads] handle_serial_event: handling possible serial event
362.902816 [threads] resume: enter
362.903310   [threads] linux_set_resume_request: [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step'
362.903608   [threads] operator(): [zyan1]  thread LWP 316.379: last_resume_kind set set 'resume_step', i: 2
362.904083   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.904371   [threads] resume: Not resuming, all-stop and found an LWP with pending status
362.904623   [threads] operator(): [zyan1]  thread LWP 316.316 is going to call resume_one_thread, leave_all_stopped 1
362.905010   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: 4688, lwp->suspended 0, lwp->status_pending_p 1, leave_all_stopped 1
362.905288   [threads] resume_one_thread: [zyan1]  thread LWP 316.316: thread->last_resume_kind 0, line 4717
362.905548   [threads] resume_one_thread: leaving LWP 316 stopped
362.905807   [threads] operator(): [zyan1]  thread LWP 316.349 is going to call resume_one_thread, leave_all_stopped 1
362.906064   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.906342   [threads] resume_one_thread: [zyan1]  thread LWP 316.349: thread->last_resume_kind 0, line 4717
362.906600   [threads] resume_one_thread: leaving LWP 349 stopped
362.906982   [threads] operator(): [zyan1]  thread LWP 316.350 is going to call resume_one_thread, leave_all_stopped 1
362.907261   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.907520   [threads] resume_one_thread: [zyan1]  thread LWP 316.350: thread->last_resume_kind 0, line 4717
362.907846   [threads] resume_one_thread: leaving LWP 350 stopped
362.908113   [threads] operator(): [zyan1]  thread LWP 316.351 is going to call resume_one_thread, leave_all_stopped 1
362.908391   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.908728   [threads] resume_one_thread: [zyan1]  thread LWP 316.351: thread->last_resume_kind 0, line 4717
362.909099   [threads] resume_one_thread: leaving LWP 351 stopped
362.909373   [threads] operator(): [zyan1]  thread LWP 316.352 is going to call resume_one_thread, leave_all_stopped 1
362.909630   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.909958   [threads] resume_one_thread: [zyan1]  thread LWP 316.352: thread->last_resume_kind 0, line 4717
362.910323   [threads] resume_one_thread: leaving LWP 352 stopped
362.910595   [threads] operator(): [zyan1]  thread LWP 316.357 is going to call resume_one_thread, leave_all_stopped 1
362.910854   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.911143   [threads] resume_one_thread: [zyan1]  thread LWP 316.357: thread->last_resume_kind 0, line 4717
362.911391   [threads] resume_one_thread: leaving LWP 357 stopped
362.911662   [threads] operator(): [zyan1]  thread LWP 316.358 is going to call resume_one_thread, leave_all_stopped 1
362.911935   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.912189   [threads] resume_one_thread: [zyan1]  thread LWP 316.358: thread->last_resume_kind 0, line 4717
362.912445   [threads] resume_one_thread: leaving LWP 358 stopped
362.912706   [threads] operator(): [zyan1]  thread LWP 316.359 is going to call resume_one_thread, leave_all_stopped 1
362.912961   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.913235   [threads] resume_one_thread: [zyan1]  thread LWP 316.359: thread->last_resume_kind 0, line 4717
362.913494   [threads] resume_one_thread: leaving LWP 359 stopped
362.913746   [threads] operator(): [zyan1]  thread LWP 316.360 is going to call resume_one_thread, leave_all_stopped 1
362.914011   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.914283   [threads] resume_one_thread: [zyan1]  thread LWP 316.360: thread->last_resume_kind 0, line 4717
362.914536   [threads] resume_one_thread: leaving LWP 360 stopped
362.914791   [threads] operator(): [zyan1]  thread LWP 316.361 is going to call resume_one_thread, leave_all_stopped 1
362.915061   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.915317   [threads] resume_one_thread: [zyan1]  thread LWP 316.361: thread->last_resume_kind 0, line 4717
362.915579   [threads] resume_one_thread: leaving LWP 361 stopped
362.916078   [threads] operator(): [zyan1]  thread LWP 316.364 is going to call resume_one_thread, leave_all_stopped 1
362.916359   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.916619   [threads] resume_one_thread: [zyan1]  thread LWP 316.364: thread->last_resume_kind 0, line 4717
362.916962   [threads] resume_one_thread: leaving LWP 364 stopped
362.917238   [threads] operator(): [zyan1]  thread LWP 316.365 is going to call resume_one_thread, leave_all_stopped 1
362.917510   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.917786   [threads] resume_one_thread: [zyan1]  thread LWP 316.365: thread->last_resume_kind 0, line 4717
362.918193   [threads] resume_one_thread: leaving LWP 365 stopped
362.918463   [threads] operator(): [zyan1]  thread LWP 316.366 is going to call resume_one_thread, leave_all_stopped 1
362.918732   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.919070   [threads] resume_one_thread: [zyan1]  thread LWP 316.366: thread->last_resume_kind 0, line 4717
362.919316   [threads] resume_one_thread: leaving LWP 366 stopped
362.919580   [threads] operator(): [zyan1]  thread LWP 316.367 is going to call resume_one_thread, leave_all_stopped 1
362.919918   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.920296   [threads] resume_one_thread: [zyan1]  thread LWP 316.367: thread->last_resume_kind 0, line 4717
362.920547   [threads] resume_one_thread: leaving LWP 367 stopped
362.920831   [threads] operator(): [zyan1]  thread LWP 316.368 is going to call resume_one_thread, leave_all_stopped 1
362.921097   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.921368   [threads] resume_one_thread: [zyan1]  thread LWP 316.368: thread->last_resume_kind 0, line 4717
362.921614   [threads] resume_one_thread: leaving LWP 368 stopped
362.922025   [threads] operator(): [zyan1]  thread LWP 316.369 is going to call resume_one_thread, leave_all_stopped 1
362.922405   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.922705   [threads] resume_one_thread: [zyan1]  thread LWP 316.369: thread->last_resume_kind 0, line 4717
362.922961   [threads] resume_one_thread: leaving LWP 369 stopped
362.923214   [threads] operator(): [zyan1]  thread LWP 316.370 is going to call resume_one_thread, leave_all_stopped 1
362.923595   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.923855   [threads] resume_one_thread: [zyan1]  thread LWP 316.370: thread->last_resume_kind 0, line 4717
362.924118   [threads] resume_one_thread: leaving LWP 370 stopped
362.924377   [threads] operator(): [zyan1]  thread LWP 316.371 is going to call resume_one_thread, leave_all_stopped 1
362.924815   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.925191   [threads] resume_one_thread: [zyan1]  thread LWP 316.371: thread->last_resume_kind 0, line 4717
362.925441   [threads] resume_one_thread: leaving LWP 371 stopped
362.925704   [threads] operator(): [zyan1]  thread LWP 316.372 is going to call resume_one_thread, leave_all_stopped 1
362.926065   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.926349   [threads] resume_one_thread: [zyan1]  thread LWP 316.372: thread->last_resume_kind 0, line 4717
362.926611   [threads] resume_one_thread: leaving LWP 372 stopped
362.926860   [threads] operator(): [zyan1]  thread LWP 316.373 is going to call resume_one_thread, leave_all_stopped 1
362.927133   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.927407   [threads] resume_one_thread: [zyan1]  thread LWP 316.373: thread->last_resume_kind 0, line 4717
362.927648   [threads] resume_one_thread: leaving LWP 373 stopped
362.927913   [threads] operator(): [zyan1]  thread LWP 316.374 is going to call resume_one_thread, leave_all_stopped 1
362.928187   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.928448   [threads] resume_one_thread: [zyan1]  thread LWP 316.374: thread->last_resume_kind 0, line 4717
362.928709   [threads] resume_one_thread: leaving LWP 374 stopped
362.928966   [threads] operator(): [zyan1]  thread LWP 316.375 is going to call resume_one_thread, leave_all_stopped 1
362.929236   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.929496   [threads] resume_one_thread: [zyan1]  thread LWP 316.375: thread->last_resume_kind 0, line 4717
362.929751   [threads] resume_one_thread: leaving LWP 375 stopped
362.929997   [threads] operator(): [zyan1]  thread LWP 316.376 is going to call resume_one_thread, leave_all_stopped 1
362.930567   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.930931   [threads] resume_one_thread: [zyan1]  thread LWP 316.376: thread->last_resume_kind 0, line 4717
362.931296   [threads] resume_one_thread: leaving LWP 376 stopped
362.931523   [threads] operator(): [zyan1]  thread LWP 316.377 is going to call resume_one_thread, leave_all_stopped 1
362.931753   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.932103   [threads] resume_one_thread: [zyan1]  thread LWP 316.377: thread->last_resume_kind 0, line 4717
362.932329   [threads] resume_one_thread: leaving LWP 377 stopped
362.932551   [threads] operator(): [zyan1]  thread LWP 316.378 is going to call resume_one_thread, leave_all_stopped 1
362.932784   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.933013   [threads] resume_one_thread: [zyan1]  thread LWP 316.378: thread->last_resume_kind 0, line 4717
362.933228   [threads] resume_one_thread: leaving LWP 378 stopped
362.933448   [threads] operator(): [zyan1]  thread LWP 316.379 is going to call resume_one_thread, leave_all_stopped 1
362.933681   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.933913   [threads] resume_one_thread: [zyan1]  thread LWP 316.379: thread->last_resume_kind 1, line 4717
362.934131   [threads] resume_one_thread: leaving LWP 379 stopped
362.934351   [threads] operator(): [zyan1]  thread LWP 316.380 is going to call resume_one_thread, leave_all_stopped 1
362.934581   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.934810   [threads] resume_one_thread: [zyan1]  thread LWP 316.380: thread->last_resume_kind 0, line 4717
362.935080   [threads] resume_one_thread: leaving LWP 380 stopped
362.935305   [threads] operator(): [zyan1]  thread LWP 316.381 is going to call resume_one_thread, leave_all_stopped 1
362.935658   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.935968   [threads] resume_one_thread: [zyan1]  thread LWP 316.381: thread->last_resume_kind 0, line 4717
362.936219   [threads] resume_one_thread: leaving LWP 381 stopped
362.936612   [threads] operator(): [zyan1]  thread LWP 316.382 is going to call resume_one_thread, leave_all_stopped 1
362.936896   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.937159   [threads] resume_one_thread: [zyan1]  thread LWP 316.382: thread->last_resume_kind 0, line 4717
362.937421   [threads] resume_one_thread: leaving LWP 382 stopped
362.937686   [threads] operator(): [zyan1]  thread LWP 316.383 is going to call resume_one_thread, leave_all_stopped 1
362.938059   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.938461   [threads] resume_one_thread: [zyan1]  thread LWP 316.383: thread->last_resume_kind 0, line 4717
362.938729   [threads] resume_one_thread: leaving LWP 383 stopped
362.938993   [threads] operator(): [zyan1]  thread LWP 316.384 is going to call resume_one_thread, leave_all_stopped 1
362.939353   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.939634   [threads] resume_one_thread: [zyan1]  thread LWP 316.384: thread->last_resume_kind 0, line 4717
362.939886   [threads] resume_one_thread: leaving LWP 384 stopped
362.940249   [threads] operator(): [zyan1]  thread LWP 316.385 is going to call resume_one_thread, leave_all_stopped 1
362.940696   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.940967   [threads] resume_one_thread: [zyan1]  thread LWP 316.385: thread->last_resume_kind 0, line 4717
362.941228   [threads] resume_one_thread: leaving LWP 385 stopped
362.941492   [threads] operator(): [zyan1]  thread LWP 316.386 is going to call resume_one_thread, leave_all_stopped 1
362.941750   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.942212   [threads] resume_one_thread: [zyan1]  thread LWP 316.386: thread->last_resume_kind 0, line 4717
362.942484   [threads] resume_one_thread: leaving LWP 386 stopped
362.942747   [threads] operator(): [zyan1]  thread LWP 316.387 is going to call resume_one_thread, leave_all_stopped 1
362.943008   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.943281   [threads] resume_one_thread: [zyan1]  thread LWP 316.387: thread->last_resume_kind 0, line 4717
362.943656   [threads] resume_one_thread: leaving LWP 387 stopped
362.943928   [threads] operator(): [zyan1]  thread LWP 316.388 is going to call resume_one_thread, leave_all_stopped 1
362.944206   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.944565   [threads] resume_one_thread: [zyan1]  thread LWP 316.388: thread->last_resume_kind 0, line 4717
362.944838   [threads] resume_one_thread: leaving LWP 388 stopped
362.945103   [threads] operator(): [zyan1]  thread LWP 316.389 is going to call resume_one_thread, leave_all_stopped 1
362.945375   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.945635   [threads] resume_one_thread: [zyan1]  thread LWP 316.389: thread->last_resume_kind 0, line 4717
362.945893   [threads] resume_one_thread: leaving LWP 389 stopped
362.946156   [threads] operator(): [zyan1]  thread LWP 316.390 is going to call resume_one_thread, leave_all_stopped 1
362.946409   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.946681   [threads] resume_one_thread: [zyan1]  thread LWP 316.390: thread->last_resume_kind 0, line 4717
362.946937   [threads] resume_one_thread: leaving LWP 390 stopped
362.947188   [threads] operator(): [zyan1]  thread LWP 316.391 is going to call resume_one_thread, leave_all_stopped 1
362.947461   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.947854   [threads] resume_one_thread: [zyan1]  thread LWP 316.391: thread->last_resume_kind 0, line 4717
362.948127   [threads] resume_one_thread: leaving LWP 391 stopped
362.948400   [threads] operator(): [zyan1]  thread LWP 316.392 is going to call resume_one_thread, leave_all_stopped 1
362.948656   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.948929   [threads] resume_one_thread: [zyan1]  thread LWP 316.392: thread->last_resume_kind 0, line 4717
362.949185   [threads] resume_one_thread: leaving LWP 392 stopped
362.949436   [threads] operator(): [zyan1]  thread LWP 316.393 is going to call resume_one_thread, leave_all_stopped 1
362.949706   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.950136   [threads] resume_one_thread: [zyan1]  thread LWP 316.393: thread->last_resume_kind 0, line 4717
362.950407   [threads] resume_one_thread: leaving LWP 393 stopped
362.950680   [threads] operator(): [zyan1]  thread LWP 316.394 is going to call resume_one_thread, leave_all_stopped 1
362.950939   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.951214   [threads] resume_one_thread: [zyan1]  thread LWP 316.394: thread->last_resume_kind 0, line 4717
362.951479   [threads] resume_one_thread: leaving LWP 394 stopped
362.951726   [threads] operator(): [zyan1]  thread LWP 316.395 is going to call resume_one_thread, leave_all_stopped 1
362.952220   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.952496   [threads] resume_one_thread: [zyan1]  thread LWP 316.395: thread->last_resume_kind 0, line 4717
362.952759   [threads] resume_one_thread: leaving LWP 395 stopped
362.953090   [threads] operator(): [zyan1]  thread LWP 316.396 is going to call resume_one_thread, leave_all_stopped 1
362.953366   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.953652   [threads] resume_one_thread: [zyan1]  thread LWP 316.396: thread->last_resume_kind 0, line 4717
362.953895   [threads] resume_one_thread: leaving LWP 396 stopped
362.954147   [threads] operator(): [zyan1]  thread LWP 316.397 is going to call resume_one_thread, leave_all_stopped 1
362.954487   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.954870   [threads] resume_one_thread: [zyan1]  thread LWP 316.397: thread->last_resume_kind 0, line 4717
362.955152   [threads] resume_one_thread: leaving LWP 397 stopped
362.955417   [threads] operator(): [zyan1]  thread LWP 316.398 is going to call resume_one_thread, leave_all_stopped 1
362.955693   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.955949   [threads] resume_one_thread: [zyan1]  thread LWP 316.398: thread->last_resume_kind 0, line 4717
362.956200   [threads] resume_one_thread: leaving LWP 398 stopped
362.956465   [threads] operator(): [zyan1]  thread LWP 316.399 is going to call resume_one_thread, leave_all_stopped 1
362.956720   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.956994   [threads] resume_one_thread: [zyan1]  thread LWP 316.399: thread->last_resume_kind 0, line 4717
362.957252   [threads] resume_one_thread: leaving LWP 399 stopped
362.957498   [threads] operator(): [zyan1]  thread LWP 316.400 is going to call resume_one_thread, leave_all_stopped 1
362.957770   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.958041   [threads] resume_one_thread: [zyan1]  thread LWP 316.400: thread->last_resume_kind 0, line 4717
362.958296   [threads] resume_one_thread: leaving LWP 400 stopped
362.958543   [threads] operator(): [zyan1]  thread LWP 316.401 is going to call resume_one_thread, leave_all_stopped 1
362.958818   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.959089   [threads] resume_one_thread: [zyan1]  thread LWP 316.401: thread->last_resume_kind 0, line 4717
362.959333   [threads] resume_one_thread: leaving LWP 401 stopped
362.959598   [threads] operator(): [zyan1]  thread LWP 316.403 is going to call resume_one_thread, leave_all_stopped 1
362.959877   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.960288   [threads] resume_one_thread: [zyan1]  thread LWP 316.403: thread->last_resume_kind 0, line 4717
362.960559   [threads] resume_one_thread: leaving LWP 403 stopped
362.960827   [threads] operator(): [zyan1]  thread LWP 316.404 is going to call resume_one_thread, leave_all_stopped 1
362.961151   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.961535   [threads] resume_one_thread: [zyan1]  thread LWP 316.404: thread->last_resume_kind 0, line 4717
362.961803   [threads] resume_one_thread: leaving LWP 404 stopped
362.962054   [threads] operator(): [zyan1]  thread LWP 316.405 is going to call resume_one_thread, leave_all_stopped 1
362.962334   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.962695   [threads] resume_one_thread: [zyan1]  thread LWP 316.405: thread->last_resume_kind 0, line 4717
362.963084   [threads] resume_one_thread: leaving LWP 405 stopped
362.963340   [threads] operator(): [zyan1]  thread LWP 316.406 is going to call resume_one_thread, leave_all_stopped 1
362.963615   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.963885   [threads] resume_one_thread: [zyan1]  thread LWP 316.406: thread->last_resume_kind 0, line 4717
362.964126   [threads] resume_one_thread: leaving LWP 406 stopped
362.964390   [threads] operator(): [zyan1]  thread LWP 316.407 is going to call resume_one_thread, leave_all_stopped 1
362.964663   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.964940   [threads] resume_one_thread: [zyan1]  thread LWP 316.407: thread->last_resume_kind 0, line 4717
362.965183   [threads] resume_one_thread: leaving LWP 407 stopped
362.965445   [threads] operator(): [zyan1]  thread LWP 316.408 is going to call resume_one_thread, leave_all_stopped 1
362.965720   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.965978   [threads] resume_one_thread: [zyan1]  thread LWP 316.408: thread->last_resume_kind 0, line 4717
362.966240   [threads] resume_one_thread: leaving LWP 408 stopped
362.966503   [threads] operator(): [zyan1]  thread LWP 316.409 is going to call resume_one_thread, leave_all_stopped 1
362.966774   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.967032   [threads] resume_one_thread: [zyan1]  thread LWP 316.409: thread->last_resume_kind 0, line 4717
362.967286   [threads] resume_one_thread: leaving LWP 409 stopped
362.967532   [threads] operator(): [zyan1]  thread LWP 316.410 is going to call resume_one_thread, leave_all_stopped 1
362.967806   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.968084   [threads] resume_one_thread: [zyan1]  thread LWP 316.410: thread->last_resume_kind 0, line 4717
362.968342   [threads] resume_one_thread: leaving LWP 410 stopped
362.968746   [threads] operator(): [zyan1]  thread LWP 316.411 is going to call resume_one_thread, leave_all_stopped 1
362.969067   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.969345   [threads] resume_one_thread: [zyan1]  thread LWP 316.411: thread->last_resume_kind 0, line 4717
362.969603   [threads] resume_one_thread: leaving LWP 411 stopped
362.969982   [threads] operator(): [zyan1]  thread LWP 316.412 is going to call resume_one_thread, leave_all_stopped 1
362.970317   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.970580   [threads] resume_one_thread: [zyan1]  thread LWP 316.412: thread->last_resume_kind 0, line 4717
362.970842   [threads] resume_one_thread: leaving LWP 412 stopped
362.971235   [threads] operator(): [zyan1]  thread LWP 316.414 is going to call resume_one_thread, leave_all_stopped 1
362.971511   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.971771   [threads] resume_one_thread: [zyan1]  thread LWP 316.414: thread->last_resume_kind 0, line 4717
362.972035   [threads] resume_one_thread: leaving LWP 414 stopped
362.972302   [threads] operator(): [zyan1]  thread LWP 316.433 is going to call resume_one_thread, leave_all_stopped 1
362.972648   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.972911   [threads] resume_one_thread: [zyan1]  thread LWP 316.433: thread->last_resume_kind 0, line 4717
362.973172   [threads] resume_one_thread: leaving LWP 433 stopped
362.973423   [threads] operator(): [zyan1]  thread LWP 316.436 is going to call resume_one_thread, leave_all_stopped 1
362.973697   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.973967   [threads] resume_one_thread: [zyan1]  thread LWP 316.436: thread->last_resume_kind 0, line 4717
362.974316   [threads] resume_one_thread: leaving LWP 436 stopped
362.974597   [threads] operator(): [zyan1]  thread LWP 316.437 is going to call resume_one_thread, leave_all_stopped 1
362.974866   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.975400   [threads] resume_one_thread: [zyan1]  thread LWP 316.437: thread->last_resume_kind 0, line 4717
362.975658   [threads] resume_one_thread: leaving LWP 437 stopped
362.975912   [threads] operator(): [zyan1]  thread LWP 316.483 is going to call resume_one_thread, leave_all_stopped 1
362.976189   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.976464   [threads] resume_one_thread: [zyan1]  thread LWP 316.483: thread->last_resume_kind 0, line 4717
362.976708   [threads] resume_one_thread: leaving LWP 483 stopped
362.976968   [threads] operator(): [zyan1]  thread LWP 316.484 is going to call resume_one_thread, leave_all_stopped 1
362.977310   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.977586   [threads] resume_one_thread: [zyan1]  thread LWP 316.484: thread->last_resume_kind 0, line 4717
362.977834   [threads] resume_one_thread: leaving LWP 484 stopped
362.978162   [threads] operator(): [zyan1]  thread LWP 316.493 is going to call resume_one_thread, leave_all_stopped 1
362.978572   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.978837   [threads] resume_one_thread: [zyan1]  thread LWP 316.493: thread->last_resume_kind 0, line 4717
362.979096   [threads] resume_one_thread: leaving LWP 493 stopped
362.979355   [threads] operator(): [zyan1]  thread LWP 316.508 is going to call resume_one_thread, leave_all_stopped 1
362.979853   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.980185   [threads] resume_one_thread: [zyan1]  thread LWP 316.508: thread->last_resume_kind 0, line 4717
362.980439   [threads] resume_one_thread: leaving LWP 508 stopped
362.980707   [threads] operator(): [zyan1]  thread LWP 316.613 is going to call resume_one_thread, leave_all_stopped 1
362.980982   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.981411   [threads] resume_one_thread: [zyan1]  thread LWP 316.613: thread->last_resume_kind 0, line 4717
362.981673   [threads] resume_one_thread: leaving LWP 613 stopped
362.981942   [threads] operator(): [zyan1]  thread LWP 316.624 is going to call resume_one_thread, leave_all_stopped 1
362.982314   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.982695   [threads] resume_one_thread: [zyan1]  thread LWP 316.624: thread->last_resume_kind 0, line 4717
362.982948   [threads] resume_one_thread: leaving LWP 624 stopped
362.983213   [threads] operator(): [zyan1]  thread LWP 316.655 is going to call resume_one_thread, leave_all_stopped 1
362.983484   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.983826   [threads] resume_one_thread: [zyan1]  thread LWP 316.655: thread->last_resume_kind 0, line 4717
362.984076   [threads] resume_one_thread: leaving LWP 655 stopped
362.984341   [threads] operator(): [zyan1]  thread LWP 316.660 is going to call resume_one_thread, leave_all_stopped 1
362.984612   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.984881   [threads] resume_one_thread: [zyan1]  thread LWP 316.660: thread->last_resume_kind 0, line 4717
362.985106   [threads] resume_one_thread: leaving LWP 660 stopped
362.985328   [threads] operator(): [zyan1]  thread LWP 316.661 is going to call resume_one_thread, leave_all_stopped 1
362.985561   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.985788   [threads] resume_one_thread: [zyan1]  thread LWP 316.661: thread->last_resume_kind 0, line 4717
362.986159   [threads] resume_one_thread: leaving LWP 661 stopped
362.986388   [threads] operator(): [zyan1]  thread LWP 316.1074 is going to call resume_one_thread, leave_all_stopped 1
362.986616   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.986983   [threads] resume_one_thread: [zyan1]  thread LWP 316.1074: thread->last_resume_kind 0, line 4717
362.987215   [threads] resume_one_thread: leaving LWP 1074 stopped
362.987439   [threads] operator(): [zyan1]  thread LWP 316.1118 is going to call resume_one_thread, leave_all_stopped 1
362.987665   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.987896   [threads] resume_one_thread: [zyan1]  thread LWP 316.1118: thread->last_resume_kind 0, line 4717
362.988119   [threads] resume_one_thread: leaving LWP 1118 stopped
362.988339   [threads] operator(): [zyan1]  thread LWP 316.1293 is going to call resume_one_thread, leave_all_stopped 1
362.988718   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.988977   [threads] resume_one_thread: [zyan1]  thread LWP 316.1293: thread->last_resume_kind 0, line 4717
362.989202   [threads] resume_one_thread: leaving LWP 1293 stopped
362.989480   [threads] operator(): [zyan1]  thread LWP 316.3027 is going to call resume_one_thread, leave_all_stopped 1
362.989719   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.990183   [threads] resume_one_thread: [zyan1]  thread LWP 316.3027: thread->last_resume_kind 0, line 4717
362.990467   [threads] resume_one_thread: leaving LWP 3027 stopped
362.990727   [threads] operator(): [zyan1]  thread LWP 316.3028 is going to call resume_one_thread, leave_all_stopped 1
362.991008   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: 4688, lwp->suspended 0, lwp->status_pending_p 0, leave_all_stopped 1
362.991284   [threads] resume_one_thread: [zyan1]  thread LWP 316.3028: thread->last_resume_kind 0, line 4717
362.991530   [threads] resume_one_thread: leaving LWP 3028 stopped
362.991783 [threads] resume: exit
362.992035 [threads] wait_1: enter
362.992296   [threads] wait_1: [<all threads>]
362.992648   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.992926   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.993442   [threads] thread_still_has_status_pending: [zyan1] 1690 pending LWP LWP 316.316, last_resume_kind 0, lp->stop_reason 0
362.993742   [threads] wait_for_event_filtered: Got a pending child 316
362.994099   [threads] wait_for_event_filtered: Got an event from pending child 316 (117f)
362.994379   [threads] wait_1: Ignored signal 17 for LWP 316.
362.994907   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.995190   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
362.995437   [threads] resume_one_lwp_throw: Resuming lwp 316 (continue, signal 17, stop not expected)
362.995948 sigchld_handler
  [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.316
362.996467 [threads] wait_1: exit
362.996738 [threads] wait_1: enter
362.997064   [threads] wait_1: [<all threads>]
362.997616   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 316, ERRNO-OK
362.998009   [threads] wait_for_event_filtered: waitpid 316 received SIGCHLD - Child exited (stopped)
362.998406   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.998688   [threads] get_pc: pc is 0x4e97c214
362.999097   [threads] wait_for_event_filtered: waitpid(-1, ...) returned 0, ERRNO-OK
362.999301   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.349 at 4e97c214: step=0
362.999397   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
362.999471   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
362.999541   [threads] resume_one_lwp_throw: Resuming lwp 349 (continue, signal 0, stop not expected)
362.999812   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.349
363.000240   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.350 at 4e97c214: step=0
363.000380   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
363.000458   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
363.000527   [threads] resume_one_lwp_throw: Resuming lwp 350 (continue, signal 0, stop not expected)
363.000777   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.350
363.000917   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.351 at 4e97c216: step=0
363.001013   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.001084   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.001303   [threads] resume_one_lwp_throw: Resuming lwp 351 (continue, signal 0, stop not expected)
363.001777   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.351
363.002080   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.352 at 4e97c216: step=0
363.002540   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.002788   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.003042   [threads] resume_one_lwp_throw: Resuming lwp 352 (continue, signal 0, stop not expected)
363.003572   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.352
363.003967   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.357 at 4e97c216: step=0
363.004235   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.004490   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.004834   [threads] resume_one_lwp_throw: Resuming lwp 357 (continue, signal 0, stop not expected)
363.005344   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.357
363.005626   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.358 at 4e97c216: step=0
363.005898   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.006245   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.006484   [threads] resume_one_lwp_throw: Resuming lwp 358 (continue, signal 0, stop not expected)
363.007065   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.358
363.007372   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.359 at 4e97c216: step=0
363.007640   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.008115   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.008390   [threads] resume_one_lwp_throw: Resuming lwp 359 (continue, signal 0, stop not expected)
363.008779   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.359
363.009196   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.360 at 4e97c216: step=0
363.009571   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.009830   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.010124   [threads] resume_one_lwp_throw: Resuming lwp 360 (continue, signal 0, stop not expected)
363.010643   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.360
363.010986   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.361 at 4e97c214: step=0
363.011275   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
363.011530   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
363.011767   [threads] resume_one_lwp_throw: Resuming lwp 361 (continue, signal 0, stop not expected)
363.012150   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.361
363.012596   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.364 at 4e97c216: step=0
363.012883   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.013201   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.013455   [threads] resume_one_lwp_throw: Resuming lwp 364 (continue, signal 0, stop not expected)
363.013917   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.364
363.014203   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.365 at 4e97c216: step=0
363.014566   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.014945   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.015193   [threads] resume_one_lwp_throw: Resuming lwp 365 (continue, signal 0, stop not expected)
363.015649   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.365
363.015970   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.366 at 4e97c216: step=0
363.016254   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.016500   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.016753   [threads] resume_one_lwp_throw: Resuming lwp 366 (continue, signal 0, stop not expected)
363.017133   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.366
363.017437   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.367 at 4e97c214: step=0
363.017702   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
363.017961   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
363.018209   [threads] resume_one_lwp_throw: Resuming lwp 367 (continue, signal 0, stop not expected)
363.018638   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.367
363.018961   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.368 at 4eb53d34: step=0
363.019576   [threads] linux_get_pc_32bit: stop pc is 0x4eb53d34
363.019846   [threads] resume_one_lwp_throw:   continue from pc 0x4eb53d34
363.020321   [threads] resume_one_lwp_throw: Resuming lwp 368 (continue, signal 0, stop not expected)
363.020743   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.368
363.021030   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.369 at 4e97c214: step=0
363.021304   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
363.021567   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
363.021820   [threads] resume_one_lwp_throw: Resuming lwp 369 (continue, signal 0, stop not expected)
363.022204   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.369
363.022486   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.370 at 4e97c216: step=0
363.022773   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.023015   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.023269   [threads] resume_one_lwp_throw: Resuming lwp 370 (continue, signal 0, stop not expected)
363.023713   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.370
363.024013   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.371 at 4e97c214: step=0
363.024395   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
363.024653   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
363.024912   [threads] resume_one_lwp_throw: Resuming lwp 371 (continue, signal 0, stop not expected)
363.025591   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.371
363.025878   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.372 at 4e97c216: step=0
363.026174   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.026432   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.026759   [threads] resume_one_lwp_throw: Resuming lwp 372 (continue, signal 0, stop not expected)
363.027313   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.372
363.027603   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.373 at 4e97c216: step=0
363.027993   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.028349   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.028608   [threads] resume_one_lwp_throw: Resuming lwp 373 (continue, signal 0, stop not expected)
363.029059   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.373
363.029576   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.374 at 4e97c214: step=0
363.029870   [threads] linux_get_pc_32bit: stop pc is 0x4e97c214
363.030207   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c214
363.030454   [threads] resume_one_lwp_throw: Resuming lwp 374 (continue, signal 0, stop not expected)
363.030855   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.374
363.031155   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.375 at 4e97c216: step=0
363.031558   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.031829   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.032064   [threads] resume_one_lwp_throw: Resuming lwp 375 (continue, signal 0, stop not expected)
363.032865   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.375
363.033162   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.376 at 4e97c216: step=0
363.033455   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.033792   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.034127   [threads] resume_one_lwp_throw: Resuming lwp 376 (continue, signal 0, stop not expected)
363.034767   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.376
363.035053   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.377 at 4e97c216: step=0
363.035486   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.035884   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.036130   [threads] resume_one_lwp_throw: Resuming lwp 377 (continue, signal 0, stop not expected)
363.036547   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.377
363.036939   [threads] resume_stopped_resumed_lwps: resuming stopped-resumed LWP LWP 316.378 at 4e97c216: step=0
363.037307   [threads] linux_get_pc_32bit: stop pc is 0x4e97c216
363.037553   [threads] resume_one_lwp_throw:   continue from pc 0x4e97c216
363.037808   [threads] resume_one_lwp_throw: Resuming lwp 378 (continue, signal 0, stop not expected)
363.038287   [threads] resume_one_lwp_throw: [zyan1-1] ../../gdb-13.0.50.20221021/gdbserver/linux-low.cc resume_one_lwp_throw 4176, thread id LWP 316.378
363.038635   [threads] maybe_hw_step: [zyan1] resuming stopped-resumed LWP LWP 316.379 at 45b462: step= -1
../../gdb-13.0.50.20221021/gdbserver/linux-low.cc:2462: A problem internal to GDBserver has been detected.
maybe_hw_step: Assertion `0' failed.
Aborted (core dumped)
EC@mpr3.1> 
EC@mpr3.1> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-11  6:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-05  2:13 The patch for bugzilla 30387 Yan, Zhiyong
2023-05-08  1:24 ` Yan, Zhiyong
2023-05-10 15:52   ` Tom Tromey
2023-05-11  6:26     ` Yan, Zhiyong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).