public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
@ 2020-11-14  9:58 vries at gcc dot gnu.org
  2020-11-14 10:41 ` [Bug gdb/26881] " vries at gcc dot gnu.org
                   ` (35 more replies)
  0 siblings, 36 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-14  9:58 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

            Bug ID: 26881
           Summary: infrun.c:6384: internal-error: void
                    process_event_stop_test(execution_control_state*):
                    Assertion
                    `ecs->event_thread->control.exception_resume_breakpoin
                    t != NULL' failed.
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: gdb
          Assignee: unassigned at sourceware dot org
          Reporter: vries at gcc dot gnu.org
  Target Milestone: ---

[ Possibly duplicate of PR17174. ]

Consider PR26880 - "hex instead of filename printed in error message":
...
$ gdb -batch test.c
"0x7ffc87bfc8d0s": not in executable format: file format not recognized
...

Now, let's try to debug this:
...
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint 1 at 0x417f36: file
/home/vries/gdb_versions/devel/src/gdb/gdb.c, line 28.
Starting program: /home/vries/gdb_versions/devel/gdb -data-directory
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

Temporary breakpoint 1, main (argc=8, argv=0x7fffffffdbf8) at
/home/vries/gdb_versions/devel/src/gdb/gdb.c:28
28        memset (&args, 0, sizeof args);
(gdb) n
29        args.argc = argc;
(gdb) n
30        args.argv = argv;
(gdb) n
31        args.interpreter_p = INTERP_CONSOLE;
(gdb) n
32        return gdb_main (&args);
(gdb) n
[New Thread 0x7fffefc75700 (LWP 11712)]
[New Thread 0x7fffef474700 (LWP 11713)]
[New Thread 0x7fffeec73700 (LWP 11714)]
[Detaching after vfork from child process 11715]
[New Thread 0x7fffee156700 (LWP 11716)]
[New Thread 0x7fffe7fff700 (LWP 11717)]
[New Thread 0x7fffed955700 (LWP 11718)]
[New Thread 0x7fffed154700 (LWP 11719)]
/home/vries/gdb_versions/devel/src/gdb/infrun.c:6384: internal-error: void
process_event_stop_test(execution_control_state*): Assertion
`ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n) 
...

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
@ 2020-11-14 10:41 ` vries at gcc dot gnu.org
  2020-11-14 10:45 ` vries at gcc dot gnu.org
                   ` (34 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-14 10:41 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #1 from Tom de Vries <vries at gcc dot gnu.org> ---
Backtrace at assert:
...
(gdb) bt
#0  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
#1  0x00007ffff4b85b01 in __GI_abort () at abort.c:79
#2  0x0000000000a9bd08 in dump_core () at
/home/vries/gdb_versions/devel/src/gdb/utils.c:204
#3  0x0000000000a9c21a in internal_vproblem(internal_problem *, const char *,
int, const char *, typedef __va_list_tag __va_list_tag *) (problem=0x15aa6c0
<internal_error_problem>, 
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.", ap=0x7fffffffcb98)
    at /home/vries/gdb_versions/devel/src/gdb/utils.c:414
#4  0x0000000000a9c2e2 in internal_verror (
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.", ap=0x7fffffffcb98)
    at /home/vries/gdb_versions/devel/src/gdb/utils.c:439
#5  0x0000000000d39725 in internal_error (
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.")
    at /home/vries/gdb_versions/devel/src/gdbsupport/errors.cc:55
#6  0x000000000074b047 in process_event_stop_test (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:6383
#7  0x000000000074ad3b in handle_signal_stop (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:6277
#8  0x0000000000749232 in handle_inferior_event (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:5530
#9  0x00000000007456e4 in fetch_inferior_event ()
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:3912
#10 0x000000000072af38 in inferior_event_handler (event_type=INF_REG_EVENT)
    at /home/vries/gdb_versions/devel/src/gdb/inf-loop.c:42
#11 0x000000000078584c in handle_target_event (error=0, client_data=0x0)
    at /home/vries/gdb_versions/devel/src/gdb/linux-nat.c:4060
#12 0x0000000000d3a447 in handle_file_event (file_ptr=0x56c3aa0, ready_mask=1)
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:575
#13 0x0000000000d3a9cf in gdb_wait_for_event (block=0)
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:701
#14 0x0000000000d39859 in gdb_do_one_event ()
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:212
#15 0x0000000000a26343 in wait_sync_command_done ()
    at /home/vries/gdb_versions/devel/src/gdb/top.c:526
#16 0x0000000000a263bb in maybe_wait_sync_command_done (was_sync=0)
    at /home/vries/gdb_versions/devel/src/gdb/top.c:543
#17 0x0000000000a26953 in execute_command (p=0x7fffffffe15d "", from_tty=0)
    at /home/vries/gdb_versions/devel/src/gdb/top.c:670
#18 0x00000000007ae648 in catch_command_errors (
    command=0xa263d4 <execute_command(char const*, int)>, arg=0x7fffffffe15c
"n", from_tty=0)
    at /home/vries/gdb_versions/devel/src/gdb/main.c:448
#19 0x00000000007ae80b in execute_cmdargs (cmdarg_vec=0x7fffffffd830,
file_type=CMDARG_FILE, 
    cmd_type=CMDARG_COMMAND, ret=0x7fffffffd80c)
    at /home/vries/gdb_versions/devel/src/gdb/main.c:533
#20 0x00000000007afa29 in captured_main_1 (context=0x7fffffffda30)
    at /home/vries/gdb_versions/devel/src/gdb/main.c:1203
#21 0x00000000007afc15 in captured_main (data=0x7fffffffda30)
    at /home/vries/gdb_versions/devel/src/gdb/main.c:1224
#22 0x00000000007afc80 in gdb_main (args=0x7fffffffda30)
    at /home/vries/gdb_versions/devel/src/gdb/main.c:1249
#23 0x0000000000417f6e in main (argc=28, argv=0x7fffffffdb38)
    at /home/vries/gdb_versions/devel/src/gdb/gdb.c:32
...

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
  2020-11-14 10:41 ` [Bug gdb/26881] " vries at gcc dot gnu.org
@ 2020-11-14 10:45 ` vries at gcc dot gnu.org
  2020-11-14 10:49 ` vries at gcc dot gnu.org
                   ` (33 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-14 10:45 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #2 from Tom de Vries <vries at gcc dot gnu.org> ---
At assert:
...
(gdb) p ecs->event_thread->control.exception_resume_breakpoint
$1 = (breakpoint *) 0x0
(gdb) p ecs->event_thread->control
$2 = {step_resume_breakpoint = 0x64e4930, exception_resume_breakpoint = 0x0, 
  single_step_breakpoints = 0x0, step_range_start = 4292450, step_range_end =
4292462, 
  step_start_function = 0x2590110, may_range_step = 0, step_frame_id = {
    stack_addr = 140737488346048, code_addr = 4292391, special_addr = 0, 
    stack_status = FID_STACK_VALID, code_addr_p = 1, special_addr_p = 0, 
    artificial_depth = 0}, step_stack_frame_id = {stack_addr = 140737488346048, 
    code_addr = 4292391, special_addr = 0, stack_status = FID_STACK_VALID,
code_addr_p = 1, 
    special_addr_p = 0, artificial_depth = 0}, trap_expected = 0,
proceed_to_finish = 0, 
  in_infcall = 0, step_over_calls = STEP_OVER_ALL, stop_step = 0, stop_bpstat =
0x570db10, 
  stepping_command = 1}
...

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
  2020-11-14 10:41 ` [Bug gdb/26881] " vries at gcc dot gnu.org
  2020-11-14 10:45 ` vries at gcc dot gnu.org
@ 2020-11-14 10:49 ` vries at gcc dot gnu.org
  2020-11-14 13:07 ` vries at gcc dot gnu.org
                   ` (32 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-14 10:49 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #3 from Tom de Vries <vries at gcc dot gnu.org> ---
Just disabling the assert doesn't work, it makes gdb hang.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2020-11-14 10:49 ` vries at gcc dot gnu.org
@ 2020-11-14 13:07 ` vries at gcc dot gnu.org
  2020-11-14 19:45 ` vries at gcc dot gnu.org
                   ` (31 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-14 13:07 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #4 from Tom de Vries <vries at gcc dot gnu.org> ---
Hmm, it seems this reproduces in the test-suite:
...
(gdb) PASS: gdb.cp/nextoverthrow.exp: post-check - next over a throw 3
next^M
/home/vries/gdb_versions/devel/src/gdb/infrun.c:6384: internal-error: void
process_event_stop_test(execution_control_state*): Assertion
`ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.^M
A problem internal to GDB has been detected,^M
further debugging may prove unreliable.^M
Quit this debugging session? (y or n) FAIL: gdb.cp/nextoverthrow.exp: next past
catch (GDB internal error)
...

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2020-11-14 13:07 ` vries at gcc dot gnu.org
@ 2020-11-14 19:45 ` vries at gcc dot gnu.org
  2020-11-15  0:24 ` vries at gcc dot gnu.org
                   ` (30 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-14 19:45 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #5 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Tom de Vries from comment #4)
> Hmm, it seems this reproduces in the test-suite:
> ...
> (gdb) PASS: gdb.cp/nextoverthrow.exp: post-check - next over a throw 3
> next^M
> /home/vries/gdb_versions/devel/src/gdb/infrun.c:6384: internal-error: void
> process_event_stop_test(execution_control_state*): Assertion
> `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.^M
> A problem internal to GDB has been detected,^M
> further debugging may prove unreliable.^M
> Quit this debugging session? (y or n) FAIL: gdb.cp/nextoverthrow.exp: next
> past catch (GDB internal error)
> ...

I also managed to reproduce this at gdb-8.3-branch branchpoint.

I haven't seen this failure before, but it's caused by the backport for gcc
PR97774 - "Incorrect line info for try/catch" (
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97774 ) landing on the compiler
I'm using.

So, this should be reproducible for anyone using gcc-10 or later.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2020-11-14 19:45 ` vries at gcc dot gnu.org
@ 2020-11-15  0:24 ` vries at gcc dot gnu.org
  2020-11-15  0:30 ` vries at gcc dot gnu.org
                   ` (29 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-15  0:24 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #6 from Tom de Vries <vries at gcc dot gnu.org> ---
So, minimal version:
...
     1  #include <iostream>
     2
     3  void
     4  function1 (int val)
     5  {
     6    throw val;
     7  }
     8
     9  void
    10  function3 (int val)
    11  {
    12    {
    13      try
    14        {
    15          function1 (val);
    16        }
    17      catch (...) 
    18        {
    19          std::cout << "Caught and handled function1 exception" <<
std::endl;
    20        }
    21    }
    22  }
    23
    24  int
    25  main (void) 
    26  { 
    27    function3 (3);
    28
    29    return 0;
    30  }
...

Compiled like:
...
$ $ g++ nextoverthrow.cc -g
...

Reproduces like so:
...
$ gdb -batch ./a.out -ex 'b 27' -ex run -ex next
Breakpoint 1 at 0x400ae4: file nextoverthrow.cc, line 27.

Breakpoint 1, main () at nextoverthrow.cc:27
27        function3 (3);
infrun.c:6384: internal-error: void
process_event_stop_test(execution_control_state*): Assertion
`ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
...

With -ex "set debug infrun 1", we see:
...
Breakpoint 1, main () at nextoverthrow.cc:27
27        function3 (3);
[infrun] infrun_async: enable=0
[infrun] clear_proceed_status_thread: process 4142
[infrun] proceed: addr=0xffffffffffffffff, signal=GDB_SIGNAL_DEFAULT
[infrun] start_step_over: step-over queue now empty
[infrun] start_step_over: resuming [process 4142] for step-over
[infrun] resume_1: step=1, signal=GDB_SIGNAL_0, trap_expected=1, current thread
[process 4142] at 0x400ae4
[infrun] infrun_async: enable=1
[infrun] prepare_to_wait: prepare_to_wait
[infrun] proceed: [process 4142] resumed
[infrun] target_wait (-1.0.0, status) =
[infrun]   4142.4142.0 [process 4142],
[infrun]   status->kind = stopped, signal = GDB_SIGNAL_TRAP
[infrun] handle_inferior_event: status->kind = stopped, signal =
GDB_SIGNAL_TRAP
[infrun] handle_signal_stop: stop_pc=0x400ae9
[infrun] process_event_stop_test: stepping inside range [0x400ae4-0x400aee]
[infrun] resume_1: step=1, signal=GDB_SIGNAL_0, trap_expected=0, current thread
[process 4142] at 0x400ae9
[infrun] prepare_to_wait: prepare_to_wait
[infrun] target_wait (-1.0.0, status) =
[infrun]   4142.4142.0 [process 4142],
[infrun]   status->kind = stopped, signal = GDB_SIGNAL_TRAP
[infrun] handle_inferior_event: status->kind = stopped, signal =
GDB_SIGNAL_TRAP
[infrun] handle_signal_stop: stop_pc=0x400a83
[infrun] process_event_stop_test: stepped into subroutine
[infrun] insert_step_resume_breakpoint_at_sal_1: inserting step-resume
breakpoint at 0x400aee
[infrun] resume_1: step=0, signal=GDB_SIGNAL_0, trap_expected=0, current thread
[process 4142] at 0x400a83
[infrun] prepare_to_wait: prepare_to_wait
[infrun] target_wait (-1.0.0, status) =
[infrun]   4142.4142.0 [process 4142],
[infrun]   status->kind = stopped, signal = GDB_SIGNAL_TRAP
[infrun] handle_inferior_event: status->kind = stopped, signal =
GDB_SIGNAL_TRAP
[infrun] handle_signal_stop: stop_pc=0x7ffff74af050
[infrun] process_event_stop_test: BPSTAT_WHAT_SET_LONGJMP_RESUME
[infrun] insert_exception_resume_breakpoint: exception resume at 400a9b
[infrun] resume_1: step=1, signal=GDB_SIGNAL_0, trap_expected=1, current thread
[process 4142] at 0x7ffff74af050
[infrun] prepare_to_wait: prepare_to_wait
[infrun] target_wait (-1.0.0, status) =
[infrun]   4142.4142.0 [process 4142],
[infrun]   status->kind = stopped, signal = GDB_SIGNAL_TRAP
[infrun] handle_inferior_event: status->kind = stopped, signal =
GDB_SIGNAL_TRAP
[infrun] handle_signal_stop: stop_pc=0x7ffff74af054
[infrun] process_event_stop_test: BPSTAT_WHAT_SET_LONGJMP_RESUME
[infrun] insert_exception_resume_from_probe: exception resume at 0x400a9b
[infrun] resume_1: step=1, signal=GDB_SIGNAL_0, trap_expected=1, current thread
[process 4142] at 0x7ffff74af054
[infrun] prepare_to_wait: prepare_to_wait
[infrun] target_wait (-1.0.0, status) =
[infrun]   4142.4142.0 [process 4142],
[infrun]   status->kind = stopped, signal = GDB_SIGNAL_TRAP
[infrun] handle_inferior_event: status->kind = stopped, signal =
GDB_SIGNAL_TRAP
[infrun] handle_signal_stop: stop_pc=0x7ffff74af055
[infrun] process_event_stop_test: step-resume breakpoint is inserted
[infrun] resume_1: step=0, signal=GDB_SIGNAL_0, trap_expected=0, current thread
[process 4142] at 0x7ffff74af055
[infrun] prepare_to_wait: prepare_to_wait
[infrun] target_wait (-1.0.0, status) =
[infrun]   4142.4142.0 [process 4142],
[infrun]   status->kind = stopped, signal = GDB_SIGNAL_TRAP
[infrun] handle_inferior_event: status->kind = stopped, signal =
GDB_SIGNAL_TRAP
[infrun] handle_signal_stop: stop_pc=0x400a9b
[infrun] process_event_stop_test: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
[infrun] resume_1: step=0, signal=GDB_SIGNAL_0, trap_expected=0, current thread
[process 4142] at 0x400a9b
[infrun] prepare_to_wait: prepare_to_wait
[infrun] target_wait (-1.0.0, status) =
[infrun]   4142.4142.0 [process 4142],
[infrun]   status->kind = stopped, signal = GDB_SIGNAL_TRAP
[infrun] handle_inferior_event: status->kind = stopped, signal =
GDB_SIGNAL_TRAP
[infrun] handle_signal_stop: stop_pc=0x400a9b
[infrun] process_event_stop_test: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
/home/vries/gdb_versions/devel/src/gdb/infrun.c:6384: internal-error: void
process_event_stop_test(execution_control_state*): Assertion
`ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
...

So, the first time we do BPSTAT_WHAT_CLEAR_LONGJMP_RESUME, we delete
ecs->event_thread->control.exception_resume_breakpoint.

Then we choose case 3, to keep going:
...
                /* Case 3.  */
                keep_going (ecs);
                return;
...

But it seems some somehow we hit again BPSTAT_WHAT_CLEAR_LONGJMP_RESUME at the
same stop_pc. And then run into the assert, because we've deleted it the first
time round.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2020-11-15  0:24 ` vries at gcc dot gnu.org
@ 2020-11-15  0:30 ` vries at gcc dot gnu.org
  2020-11-16 14:35 ` vries at gcc dot gnu.org
                   ` (28 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-15  0:30 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |palves at redhat dot com

--- Comment #7 from Tom de Vries <vries at gcc dot gnu.org> ---
So, this seems to fix it:
...
diff --git a/gdb/infrun.c b/gdb/infrun.c
index 2e5e837452d..3a57cf110a4 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -6410,6 +6410,7 @@ process_event_stop_test (struct execution_control_state
*ecs)
            else
              {
                /* Case 3.  */
+               ecs->event_thread->stepping_over_breakpoint = 1;
                keep_going (ecs);
                return;
              }
...

Resulting in:
...
$ gdb -batch ./a.out -ex 'b 27' -ex run -ex next
Breakpoint 1 at 0x400ae4: file nextoverthrow.cc, line 27.

Breakpoint 1, main () at nextoverthrow.cc:27
27        function3 (3);
Caught and handled function1 exception
29        return 0;
...

Is this a proper fix?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2020-11-15  0:30 ` vries at gcc dot gnu.org
@ 2020-11-16 14:35 ` vries at gcc dot gnu.org
  2020-11-21  8:58 ` vries at gcc dot gnu.org
                   ` (27 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-16 14:35 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #8 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Tom de Vries from comment #7)
> So, this seems to fix it:
> ...
> diff --git a/gdb/infrun.c b/gdb/infrun.c
> index 2e5e837452d..3a57cf110a4 100644
> --- a/gdb/infrun.c
> +++ b/gdb/infrun.c
> @@ -6410,6 +6410,7 @@ process_event_stop_test (struct
> execution_control_state *ecs)
>             else
>               {
>                 /* Case 3.  */
> +               ecs->event_thread->stepping_over_breakpoint = 1;
>                 keep_going (ecs);
>                 return;
>               }
> ...
> 

FTR, survived regression test.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2020-11-16 14:35 ` vries at gcc dot gnu.org
@ 2020-11-21  8:58 ` vries at gcc dot gnu.org
  2021-01-05 10:41 ` vries at gcc dot gnu.org
                   ` (26 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2020-11-21  8:58 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #9 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Tom de Vries from comment #5)
> So, this should be reproducible for anyone using gcc-10 or later.

Confirmed, I reproduced this on openSUSE Tumbleweed with system gcc 10.2.1, and
debuginfo for libgcc installed.

In the beginning of the test-case, we check for skip_unwinder_tests, which
first checks for the presence of _Unwind_DebugHook.  Without debuginfo for
libgcc, it's not found, with debuginfo for libgcc, it is.

FWIW, I found an apparently never committed gcc patch (
https://gcc.gnu.org/legacy-ml/gcc-patches/2010-04/msg01647.html ) to make the
symbol part of the lib interface, such that it can be found without libgcc
debuginfo installed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2020-11-21  8:58 ` vries at gcc dot gnu.org
@ 2021-01-05 10:41 ` vries at gcc dot gnu.org
  2021-01-05 10:44 ` vries at gcc dot gnu.org
                   ` (25 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2021-01-05 10:41 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #10 from Tom de Vries <vries at gcc dot gnu.org> ---
Hmm, I start to wonder whether the problem is that we install two
exception_master breakpoints:
- one using _Unwind_DebugHook
- one using probes.

In create_exception_master_breakpoint we have:
...
   for (objfile *objfile : current_program_space->objfiles ())
     {
        /* Try using probes.  */
        if (/* successful */)
          continue;

        /* Try using _Unwind_DebugHook */
     }
...

What happens is that we first encounter libgcc.debug. We try using probes, and
this fails, so we try _Unwind_DebugHook, which succeeds.

Then we encounter libgcc.  We try using probes, and this succeeds.

I'm not sure why we keep trying after installing a master breakpoint.  Can
there be one per objfile?

Either way, the root cause seems to be that the probes vs _Unwind_DebugHook
preference mechanism does not take seperate debug info objfiles into account.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug gdb/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2021-01-05 10:41 ` vries at gcc dot gnu.org
@ 2021-01-05 10:44 ` vries at gcc dot gnu.org
  2021-01-05 13:30 ` [Bug breakpoints/26881] " vries at gcc dot gnu.org
                   ` (24 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2021-01-05 10:44 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #11 from Tom de Vries <vries at gcc dot gnu.org> ---
Created attachment 13094
  --> https://sourceware.org/bugzilla/attachment.cgi?id=13094&action=edit
tentative patch, splits loop in create_exception_master_breakpoint into two
loops

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2021-01-05 10:44 ` vries at gcc dot gnu.org
@ 2021-01-05 13:30 ` vries at gcc dot gnu.org
  2021-01-08 10:11 ` cvs-commit at gcc dot gnu.org
                   ` (23 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2021-01-05 13:30 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|gdb                         |breakpoints

--- Comment #12 from Tom de Vries <vries at gcc dot gnu.org> ---
Submitted patch:
https://sourceware.org/pipermail/gdb-patches/2021-January/174712.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2021-01-05 13:30 ` [Bug breakpoints/26881] " vries at gcc dot gnu.org
@ 2021-01-08 10:11 ` cvs-commit at gcc dot gnu.org
  2021-01-08 10:58 ` cvs-commit at gcc dot gnu.org
                   ` (22 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-01-08 10:11 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #13 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom de Vries <vries@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1940319c0ef6271cc42a5d4c359be90063948710

commit 1940319c0ef6271cc42a5d4c359be90063948710
Author: Tom de Vries <tdevries@suse.de>
Date:   Fri Jan 8 11:11:16 2021 +0100

    [gdb] Fix internal-error in process_event_stop_test

    The function create_exception_master_breakpoint in gdb/breakpoint.c
attempts
    to set a master exception breakpoint in each objfile.  It tries this using
    a libgcc/unwind probe, and if that fails then using the
    _Unwind_DebugHook symbol:
    ...
       for (objfile *objfile : current_program_space->objfiles ())
         {
            /* Try using probes.  */
            if (/* successful */)
              continue;

            /* Try using _Unwind_DebugHook */
         }
    ...

    The preference scheme works ok both if the objfile has debug info, and if
it's
    stripped.

    But it doesn't work when the objfile has a .gnu_debuglink to a .debug file
    (and the .debug file is present).  What happens is that:
    - we first encounter objfile libgcc.debug
    - we try using probes, and this fails
    - so we try _Unwind_DebugHook, which succeeds
    - next we encounter objfile libgcc
    - we try using probes, and this succeeds.
    So, we end up with a master exception breakpoint in both libgcc (using
probes)
    and libgcc.debug (using _Unwind_DebugHook).

    This eventually causes:
    ...
    (gdb) PASS: gdb.cp/nextoverthrow.exp: post-check - next over a throw 3
    next^M
    src/gdb/infrun.c:6384: internal-error: \
      void process_event_stop_test(execution_control_state*): \
      Assertion `ecs->event_thread->control.exception_resume_breakpoint !=
NULL' \
      failed.^M
    A problem internal to GDB has been detected,^M
    further debugging may prove unreliable.^M
    Quit this debugging session? (y or n) FAIL: gdb.cp/nextoverthrow.exp: next
    past catch (GDB internal error)
    ...

    To trigger this internal-error, we need to use gcc-10 or later to compile
the
    test-case, such that it contains the fix for gcc PR97774 - "Incorrect line
    info for try/catch".

    Fix this by only trying to install the master exception breakpoint in
    libgcc.debug using the _Unwind_DebugHook method, if the install using
probes
    in libgcc failed.

    Tested on x86_64-linux.

    gdb/ChangeLog:

    2021-01-08  Tom de Vries  <tdevries@suse.de>

            PR gdb/26881
            * breakpoint.c (create_exception_master_breakpoint_probe)
            (create_exception_master_breakpoint_hook): Factor out
            of ...
            (create_exception_master_breakpoint): ... here.  Only try to
install
            the master exception breakpoint in objfile.debug using the
            _Unwind_DebugHook method, if the install using probes in objfile
            failed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (12 preceding siblings ...)
  2021-01-08 10:11 ` cvs-commit at gcc dot gnu.org
@ 2021-01-08 10:58 ` cvs-commit at gcc dot gnu.org
  2021-01-08 11:00 ` vries at gcc dot gnu.org
                   ` (21 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-01-08 10:58 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

--- Comment #14 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The gdb-10-branch branch has been updated by Tom de Vries
<vries@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=360ecc531331f9e2709a08aabb38586eddae0d5d

commit 360ecc531331f9e2709a08aabb38586eddae0d5d
Author: Tom de Vries <tdevries@suse.de>
Date:   Fri Jan 8 11:58:41 2021 +0100

    [gdb] Fix internal-error in process_event_stop_test

    The function create_exception_master_breakpoint in gdb/breakpoint.c
attempts
    to set a master exception breakpoint in each objfile.  It tries this using
    a libgcc/unwind probe, and if that fails then using the
    _Unwind_DebugHook symbol:
    ...
       for (objfile *objfile : current_program_space->objfiles ())
         {
            /* Try using probes.  */
            if (/* successful */)
              continue;

            /* Try using _Unwind_DebugHook */
         }
    ...

    The preference scheme works ok both if the objfile has debug info, and if
it's
    stripped.

    But it doesn't work when the objfile has a .gnu_debuglink to a .debug file
    (and the .debug file is present).  What happens is that:
    - we first encounter objfile libgcc.debug
    - we try using probes, and this fails
    - so we try _Unwind_DebugHook, which succeeds
    - next we encounter objfile libgcc
    - we try using probes, and this succeeds.
    So, we end up with a master exception breakpoint in both libgcc (using
probes)
    and libgcc.debug (using _Unwind_DebugHook).

    This eventually causes:
    ...
    (gdb) PASS: gdb.cp/nextoverthrow.exp: post-check - next over a throw 3
    next^M
    src/gdb/infrun.c:6384: internal-error: \
      void process_event_stop_test(execution_control_state*): \
      Assertion `ecs->event_thread->control.exception_resume_breakpoint !=
NULL' \
      failed.^M
    A problem internal to GDB has been detected,^M
    further debugging may prove unreliable.^M
    Quit this debugging session? (y or n) FAIL: gdb.cp/nextoverthrow.exp: next
    past catch (GDB internal error)
    ...

    To trigger this internal-error, we need to use gcc-10 or later to compile
the
    test-case, such that it contains the fix for gcc PR97774 - "Incorrect line
    info for try/catch".

    Fix this by only trying to install the master exception breakpoint in
    libgcc.debug using the _Unwind_DebugHook method, if the install using
probes
    in libgcc failed.

    Tested on x86_64-linux.

    gdb/ChangeLog:

    2021-01-08  Tom de Vries  <tdevries@suse.de>

            PR gdb/26881
            * breakpoint.c (create_exception_master_breakpoint_probe)
            (create_exception_master_breakpoint_hook): Factor out
            of ...
            (create_exception_master_breakpoint): ... here.  Only try to
install
            the master exception breakpoint in objfile.debug using the
            _Unwind_DebugHook method, if the install using probes in objfile
            failed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (13 preceding siblings ...)
  2021-01-08 10:58 ` cvs-commit at gcc dot gnu.org
@ 2021-01-08 11:00 ` vries at gcc dot gnu.org
  2021-06-27 17:49 ` ahmedsayeed1982 at yahoo dot com
                   ` (20 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vries at gcc dot gnu.org @ 2021-01-08 11:00 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED
   Target Milestone|---                         |10.2

--- Comment #15 from Tom de Vries <vries at gcc dot gnu.org> ---
Fixed in both master and gdb 10.2.  Marking resolved-fixed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (14 preceding siblings ...)
  2021-01-08 11:00 ` vries at gcc dot gnu.org
@ 2021-06-27 17:49 ` ahmedsayeed1982 at yahoo dot com
  2021-08-10 11:45 ` ucelsanicin at yahoo dot com
                   ` (19 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ahmedsayeed1982 at yahoo dot com @ 2021-06-27 17:49 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Ahmed Sayeed <ahmedsayeed1982 at yahoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ahmedsayeed1982 at yahoo dot com

--- Comment #16 from Ahmed Sayeed <ahmedsayeed1982 at yahoo dot com> ---
Temporary breakpoint 1, main (argc=8, argv=0x7fffffffdbf8) at
/home/vries/gdb_versions/devel/src/gdb/gdb.c:28
28        memset (&args, 0, sizeof args);
(gdb) n
29        args.argc = argc;
(gdb) n
30        args.argv = argv;
(gdb) n
31        args.interpreter_p = INTERP_CONSOLE;
(gdb) n
32        return gdb_main (&args);
(gdb) n
[New Thread 0x7fffefc75700 (LWP 11712)]
[New Thread 0x7fffef474700 (LWP 11713)]
[New Thread 0x7fffeec73700 (LWP 11714)]
[Detaching after vfork from child process 11715]
[New Thread 0x7fffee156700 (LWP 11716)]
[New Thread 0x7fffe7fff700 (LWP 11717)]
[New Thread 0x7fffed955700 (LWP 11718)]
[New Thread 0x7fffed154700 (LWP 11719)]
/home/vries/gdb_versions/devel/src/gdb/infrun.c:6384: internal-error: void
process_event_stop_test(execution_control_state*): Assertion
`ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n)  
http://my-iframe.online

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (15 preceding siblings ...)
  2021-06-27 17:49 ` ahmedsayeed1982 at yahoo dot com
@ 2021-08-10 11:45 ` ucelsanicin at yahoo dot com
  2021-08-27 17:51 ` ribevi6798 at enamelme dot com
                   ` (18 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ucelsanicin at yahoo dot com @ 2021-08-10 11:45 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Ucel Sani <ucelsanicin at yahoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ucelsanicin at yahoo dot com

--- Comment #17 from Ucel Sani <ucelsanicin at yahoo dot com> ---
https://komiya-dental.com/
http://steemfilter.space/
http://michielleunens.tech/
http://sleepypoetstuff.website/
http://biciclubvalencia.website/
http://reputation-management.site/
http://pitesti.online/
http://tobuweb.space/
http://ancientmariners.online/
http://betwsycoednet.online
http://kuzin.website
http://kundaliniyoga.tech
http://localpay.tech
http://getimov.xyz/
http://ooviv.xyz/
http://mirei.xyz
http://toblek.xyz/
http://sevenwonders.store
http://peralga.xyz/
https://texastourgear.live
http://freixenet.site/influencerprogramme/
http://timvanorden.store/
http://rhee.tech/
http://f3group.online/
https://www.hlungomare.store/
https://www.lungomarebikehotel.store
http://www.lvmaimai.xyz/
https://sozdanie.site/
http://agens128.site/
http://troubadourtunes.online/
http://ruirui.store/
http://www.foamhands.store/
http://www.i-obchody.info/
http://naughtyrobot.digital/
https://www.webb-dev.co.uk/
https://waytowhatsnext.com/
https://www.bilanmagazine.com/
https://www.web-mediaplacing.com/
https://fitnessblog.fr/
https://cbd-huile-blog.fr/
https://www.laptopkerja.com/
https://www.espresso-international.eu/
https://www.espresso-international.be
https://www.espresso-international.gr
https://besthotels.wiki
https://www.cherada.net/opus/verified-gmail-accounts
https://www.cherada.net/opus/10000-visitas-a-tu-video-en-youtube
https://www.cherada.net/opus/100-backlinks-en-comentarios-de-blog-a-la-medida
https://redwinecasino.com/
https://sharkcasinogames.com/
https://redbettips.com/
https://windows11iso.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (16 preceding siblings ...)
  2021-08-10 11:45 ` ucelsanicin at yahoo dot com
@ 2021-08-27 17:51 ` ribevi6798 at enamelme dot com
  2021-08-28 18:31 ` buranlevent at yahoo dot com
                   ` (17 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ribevi6798 at enamelme dot com @ 2021-08-27 17:51 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

ribevi <ribevi6798 at enamelme dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ribevi6798 at enamelme dot com

--- Comment #18 from ribevi <ribevi6798 at enamelme dot com> ---
I read a article under the same title some time ago, but this articles quality
is much, much better. How you do this..
https://www.introverts.org
https://imedenver.com/
https://www.efinancialmodels.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (17 preceding siblings ...)
  2021-08-27 17:51 ` ribevi6798 at enamelme dot com
@ 2021-08-28 18:31 ` buranlevent at yahoo dot com
  2021-09-06  9:10 ` focixujo at livinginsurance dot co.uk
                   ` (16 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: buranlevent at yahoo dot com @ 2021-08-28 18:31 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Buran Levent <buranlevent at yahoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |buranlevent at yahoo dot com

--- Comment #19 from Buran Levent <buranlevent at yahoo dot com> ---
https://cars-scanner.fi/
https://cars-scanner.com.au/
https://gazette.com.ua/
https://dailyday.com.ua/
https://heavy.news/
https://labastide-saint-pierre.com/
https://word-press.info/
https://200iso.fr/
http://metro-montreal.com/
https://www.subsaharandrilling.com/
https://chanterelle.net/
https://netsolution.fr/
https://www.checkergooglerank.com/
https://bibliothequeparis.fr/
https://abripiscines.fr/
https://blague-courte.com/
https://defisconseil.fr/
https://www.justin-timberlake.net/
https://seo-consult.fr/
https://blur.fr/
http://www.websiteseo.biz/
https://creation-logo.org/
http://web-directory.net/
https://thebusinessdaily.org/
https://shespeaks.ca/
https://e-radio.ca/
https://earnwithsocial.ca/
https://3km.ca/
https://freshhive.ca/
https://thenewsowl.com/
https://canadianreporter.ca/
https://yoursavings.ca/
https://news.insightinteractive.ca/
https://spotlightmagazine.ca/
https://boutique.chateausaintlouis.fr/fr/
https://www.guidebogota.com/
https://google-adsense.info/
https://www.websiteworth.biz/
https://www.jobsfinder.biz/
https://www.tastytables.net/
http://wikichers.com/
https://www.checkergooglerank.com/
https://www.maxicar31.com/
http://www.commission-de-surendettement.fr/
https://audi-toulouse.fr/
https://taipan.fr/
http://taillehaie.fr/
https://lose-weight-fast.org/
https://dreamweaver.fr/
https://dictons.fr/
https://besthotels.hamburg/
https://fuuei-fukuoka.com/
http://fichiers.biz/
https://reseauxsociaux.info/
https://siteinternet.org/
https://ski-alpin.fr/
http://url-shortener.org/
https://neomail.fr/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (18 preceding siblings ...)
  2021-08-28 18:31 ` buranlevent at yahoo dot com
@ 2021-09-06  9:10 ` focixujo at livinginsurance dot co.uk
  2021-09-10 19:40 ` mehmetgelisin at aol dot com
                   ` (15 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: focixujo at livinginsurance dot co.uk @ 2021-09-06  9:10 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

james robin <focixujo at livinginsurance dot co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |focixujo at livinginsurance dot co
                   |                            |.uk

--- Comment #20 from james robin <focixujo at livinginsurance dot co.uk> ---
https://www.montgomeryasphalt.com/
https://www.orangeasphaltrepair.com/
https://www.stpaulasphalt.com/
https://www.miamiflcarpentry.com/
https://www.carpentryatl.com/
https://www.sanbernardinocarpetcleaning.com/
https://www.carpetcleaningfontanaca.com/
https://www.cincinnaticarpetcleaner.net/
https://www.stocktoncarpetcleaning.net/
https://www.carpetsbakersfield.com/
https://www.carpetswestminster.com/
https://www.grandrapidscarpets.com/
https://www.alexandriavacarpet.com/
https://www.colacarpetcleaning.com/
https://www.carpetcleaningvabeach.com/
https://www.newportnewscarpetcleaning.com/
https://www.chimneycleanrepair.com/
https://www.fremontconcrete.net/
https://www.visaliaconcrete.net/
https://www.murrietacaconcrete.com/
https://www.jolietconcrete.net/
https://www.friscoconcrete.net/
https://www.wichitadatacabling.com/
https://www.atldatacabling.com/
https://www.datacablingmiami.com/
https://www.columbiascdeckbuilder.com/
https://www.tallahasseedeckbuilder.com/
https://www.clarksvilledeckbuilder.net/
https://www.alexandriadeckbuilder.com/
https://www.norfolkdeckbuilder.com/
https://www.athensdeckbuilder.com/
https://www.napervilledeckbuilder.com/
https://www.slcdeckbuilder.com/
https://www.centennialdeckbuilder.com/
https://www.kansascitydeck.builder/
https://www.springfielddeckbuilder.com/
https://augustadeckbuilder.com/
https://www.brownsvilledeckbuilder.com/
https://www.dentondeckbuilder.com/
https://www.worcesterdeckbuilder.com/
https://www.mckinneydeck.builder/
https://www.lowelldeckbuilder.com/
https://www.vancouverdeckbuilder.net/
https://www.cambridgedeckbuilder.com/
https://www.columbiamodeckbuilder.com/
https://www.pearlanddeckbuilder.com/
https://www.lakelanddeckbuilder.com/
https://www.westjordandeck.builder/
https://www.bellevuedeckbuilder.com/
https://www.pembrokepinesdeck.builder/
https://www.scottsdaledisabilitylawyer.com/
https://www.divorcescottsdaleaz.com/
https://www.epoxyflooringspokane.com/
https://www.norfolkepoxyflooring.com/
https://www.morenovalleyepoxy.com/
https://www.palmdalecapainters.com/
https://www.paintersgrandprairie.com/
https://www.modestofencebuilder.com/
https://www.glendalefencebuilder.com/
https://www.gilbertfencebuilder.com/
https://www.fontanafencebuilder.com/
https://www.irvingfencebuilder.com/
https://www.morenovalleyfence.net/
https://www.boisefencebuilder.com/
https://www.mesafence.net/
https://www.glendalefence.net/
https://www.honolulufence.net/
https://www.columbiamocontractor.net/
https://www.newhavencontractor.net/
https://www.miamiflcontractor.com/
https://www.ranchocucamongacontractor.net/
https://www.richmondgutter.net/
https://www.desmoinesgutter.com/
https://www.garlandtxpainters.com/
https://www.norfolkinteriorpainters.com/
https://www.atllocksmithga.com/
https://www.locksmithsscottsdale.com/
https://www.tampamasonry.net/
https://www.ontariomasonry.net/
https://www.stamfordmasonry.net/
https://www.gardengrovemasonry.net/
https://www.sterlingheightsmasonry.net/
https://www.newhavenmasonry.net/
https://www.scottsdaleprivateeye.com/
https://www.miamiflprivateinvestigator.com/
https://www.privateeyecincinnati.com/
https://www.kentremodeling.net/
https://www.kckremodeling.com/
https://www.allenremodeling.net/
https://www.orlandoremodeling.net/
https://www.sealcoatingkansascity.com/
https://www.sealcoatcoloradosprings.com/
https://www.elginilsealcoating.com/
https://www.providencesealcoating.com/
https://www.stpaulsealcoating.com/
https://www.tampaflsealcoating.com/
https://www.atlsealcoating.com/
https://www.sanbernardinosealcoating.com/
https://www.elginsepticservices.com/
https://www.aurorasepticservices.com/
https://www.fontanasepticservices.com/
https://www.sanbernardinosepticservices.com/
https://www.minneapolisstuccorepair.com/
https://www.stuccorepairorlandofl.com/
https://www.stuccorepaircapecoral.com/
https://www.orlandofltowing.com/
https://www.ftlauderdaletreeremoval.net/
https://www.treeservicefremont.net/
https://www.treeserviceanaheim.net/
https://www.treeservicestockton.net/
https://www.cincinnatitreecare.net/
https://www.tempetreeservice.net/
https://www.treeserviceaurora.net/
https://www.treeservicebrownsville.com/
https://www.lakewoodtreeservice.net/
https://www.newhaventreeservice.net/
https://www.montgomerytreeservice.net/
https://www.lansingtreecare.net/
https://www.tuscaloosatreeservice.net/
https://www.shreveportreeservice.com/
https://www.batonrougetreeservice.net/
https://www.davenporttreeservice.net/
https://www.greeleytreeservice.net/
https://www.stocktonweddingplanner.com/
https://www.pasadenatxsealcoating.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (19 preceding siblings ...)
  2021-09-06  9:10 ` focixujo at livinginsurance dot co.uk
@ 2021-09-10 19:40 ` mehmetgelisin at aol dot com
  2021-09-14 17:28 ` johnb6174 at gmail dot com
                   ` (14 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: mehmetgelisin at aol dot com @ 2021-09-10 19:40 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Mehmet gelisin <mehmetgelisin at aol dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mehmetgelisin at aol dot com

--- Comment #21 from Mehmet gelisin <mehmetgelisin at aol dot com> ---
0x00007ffff4b85b01 in __GI_abort () at abort.c:79
#2  0x0000000000a9bd08 in dump_core () at 
/home/vries/gdb_versions/devel/src/gdb/utils.c:204 http://www-look-4.com/
#3  0x0000000000a9c21a in internal_vproblem(internal_problem *, const char *,
int, const char *, typedef __va_list_tag __va_list_tag *) (problem=0x15aa6c0
<internal_error_problem>,  http://www.iu-bloomington.com/
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.", ap=0x7fffffffcb98)
    at /home/vries/gdb_versions/devel/src/gdb/utils.c:414 
http://www.compilatori.com/
#4  0x0000000000a9c2e2 in internal_verror (
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 https://komiya-dental.com/ "%s: Assertion `%s' failed.",
ap=0x7fffffffcb98)
    at /home/vries/gdb_versions/devel/src/gdb/utils.c:439
#5  0x0000000000d39725 in internal_error ( http://www.wearelondonmade.com/
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.")
    at /home/vries/gdb_versions/devel/src/gdbsupport/errors.cc:55
#6  0x000000000074b047 in process_event_stop_test (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:6383
http://www.jopspeech.com/
#7  0x000000000074ad3b in handle_signal_stop (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:6277
#8  0x0000000000749232 in handle_inferior_event (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:5530
#9  0x00000000007456e4 in fetch_inferior_event () http://joerg.li/
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:3912
#10 0x000000000072af38 in inferior_event_handler (event_type=INF_REG_EVENT)
    at /home/vries/gdb_versions/devel/src/gdb/inf-loop.c:42
#11 0x000000000078584c in handle_target_event (error=0, client_data=0x0)
    at /home/vries/gdb_versions/devel/src/gdb/linux-nat.c:4060
http://connstr.net/
#12 0x0000000000d3a447 in handle_file_event (file_ptr=0x56c3aa0, ready_mask=1)
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:575
#13 0x0000000000d3a9cf in gdb_wait_for_event (block=0)
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:701
#14 0x0000000000d39859 in gdb_do_one_event () http://embermanchester.uk/
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:212
#15 0x0000000000a26343 in wait_sync_command_done ()
    at /home/vries/gdb_versions/devel/src/gdb/top.c:526
#16 0x0000000000a263bb in maybe_wait_sync_command_done (was_sync=0)
http://www.slipstone.co.uk/
    at /home/vries/gdb_versions/devel/src/gdb/top.c:543
#17 0x0000000000a26953 in execute_command (p=0x7fffffffe15d "", from_tty=0)
    at /home/vries/gdb_versions/devel/src/gdb/top.c:670
http://www.logoarts.co.uk/
#18 0x00000000007ae648 in catch_command_errors (
    command=0xa263d4 <execute_command(char const*, int)>, arg=0x7fffffffe15c
"n", from_tty=0) http://www.acpirateradio.co.uk/
    at /home/vries/gdb_versions/devel/src/gdb/main.c:448
#19 0x00000000007ae80b in execute_cmdargs (cmdarg_vec=0x7fffffffd830,
file_type=CMDARG_FILE, 
    cmd_type=CMDARG_COMMAND, ret=0x7fffffffd80c) https://waytowhatsnext.com/
    at /home/vries/gdb_versions/devel/src/gdb/main.c:533
#20 0x00000000007afa29 in captured_main_1 (context=0x7fffffffda30)
    at /home/vries/gdb_versions/devel/src/gdb/main.c:1203 
#21 0x00000000007afc15 in captured_main (data=0x7fffffffda30)
https://www.webb-dev.co.uk/
    at /home/vries/gdb_versions/devel/src/gdb/main.c:1224
#22 0x00000000007afc80 in gdb_main (args=0x7fffffffda30)
    at /home/vries/gdb_versions/devel/src/gdb/main.c:1249

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (20 preceding siblings ...)
  2021-09-10 19:40 ` mehmetgelisin at aol dot com
@ 2021-09-14 17:28 ` johnb6174 at gmail dot com
  2021-09-14 18:48 ` mark at klomp dot org
                   ` (13 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: johnb6174 at gmail dot com @ 2021-09-14 17:28 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

johnb6174 <johnb6174 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |johnb6174 at gmail dot com

--- Comment #22 from johnb6174 <johnb6174 at gmail dot com> ---
This was a really great contest and hopefully I can attend the next one. It was
alot of fun and I really enjoyed myself.. https://abbicare.com.au/
https://www.miningbusiness.net/
https://getweightfast.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (21 preceding siblings ...)
  2021-09-14 17:28 ` johnb6174 at gmail dot com
@ 2021-09-14 18:48 ` mark at klomp dot org
  2021-10-09 11:00 ` gulsenenginar at aol dot com
                   ` (12 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: mark at klomp dot org @ 2021-09-14 18:48 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Mark Wielaard <mark at klomp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mark at klomp dot org

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (22 preceding siblings ...)
  2021-09-14 18:48 ` mark at klomp dot org
@ 2021-10-09 11:00 ` gulsenenginar at aol dot com
  2021-10-17 19:48 ` vmireskazki at gmail dot com
                   ` (11 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: gulsenenginar at aol dot com @ 2021-10-09 11:00 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Gulsen Engin <gulsenenginar at aol dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gulsenenginar at aol dot com

--- Comment #23 from Gulsen Engin <gulsenenginar at aol dot com> ---
file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.", ap=0x7fffffffcb98)
https://www.webb-dev.co.uk/sports/gym-during-covid/
    at /home/vries/gdb_versions/devel/src/gdb/utils.c:414
#4  0x0000000000a9c2e2 in internal_verror (
http://www.compilatori.com/health/covid-and-tech/
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.", ap=0x7fffffffcb98)
http://www.acpirateradio.co.uk/health/covid-and-tech/
    at /home/vries/gdb_versions/devel/src/gdb/utils.c:439
#5  0x0000000000d39725 in internal_error (
http://www.logoarts.co.uk/health/covid-and-tech/
    file=0xe346e0 "/home/vries/gdb_versions/devel/src/gdb/infrun.c", line=6384, 
    fmt=0xe34269 "%s: Assertion `%s' failed.")
    at /home/vries/gdb_versions/devel/src/gdbsupport/errors.cc:55
http://www.slipstone.co.uk/health/covid-and-tech/ 
#6  0x000000000074b047 in process_event_stop_test (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:6383
http://embermanchester.uk/health/covid-and-tech/ 
#7  0x000000000074ad3b in handle_signal_stop (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:6277
#8  0x0000000000749232 in handle_inferior_event (ecs=0x7fffffffd270)
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:5530
http://connstr.net/health/covid-and-tech/ 
#9  0x00000000007456e4 in fetch_inferior_event ()
    at /home/vries/gdb_versions/devel/src/gdb/infrun.c:3912
#10 0x000000000072af38 in inferior_event_handler
http://joerg.li/health/covid-and-tech/  (event_type=INF_REG_EVENT)
    at /home/vries/gdb_versions/devel/src/gdb/inf-loop.c:42
#11 0x000000000078584c in handle_target_event (error=0, client_data=0x0)
    at /home/vries/gdb_versions/devel/src/gdb/linux-nat.c:4060
http://www.jopspeech.com/health/covid-and-tech/ 
#12 0x0000000000d3a447 in handle_file_event (file_ptr=0x56c3aa0, ready_mask=1)
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:575
#13 0x0000000000d3a9cf in gdb_wait_for_event (block=0)
http://www.wearelondonmade.com/health/covid-and-tech/ 
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:701
#14 0x0000000000d39859 in gdb_do_one_event ()
    at /home/vries/gdb_versions/devel/src/gdbsupport/event-loop.cc:212
https://waytowhatsnext.com/sports/asian-sports/ 
#15 0x0000000000a26343 in wait_sync_command_done ()
    at /home/vries/gdb_versions/devel/src/gdb/top.c:526
http://www.iu-bloomington.com/sports/honda-civic/ 
#16 0x0000000000a263bb in maybe_wait_sync_command_done (was_sync=0)
    at /home/vries/gdb_versions/devel/src/gdb/top.c:543
https://komiya-dental.com/sports/telegram/ 
#17 0x0000000000a26953 in execute_command (p=0x7fffffffe15d "", from_tty=0)
    at /home/vries/gdb_versions/devel/src/gdb/top.c:670
http://www-look-4.com/health/covid-and-tech/ 
#18 0x00000000007ae648 in catch_command_errors (
    command=0xa263d4 <execute_command(char const*, int)>  , arg=0x7fffffffe15c
"n", from_tty=0)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (23 preceding siblings ...)
  2021-10-09 11:00 ` gulsenenginar at aol dot com
@ 2021-10-17 19:48 ` vmireskazki at gmail dot com
  2021-10-18 19:58 ` ahmedsayeed1982 at hotmail dot com
                   ` (10 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: vmireskazki at gmail dot com @ 2021-10-17 19:48 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

vmireskazki at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vmireskazki at gmail dot com

--- Comment #24 from vmireskazki at gmail dot com ---
https://www.secretovnet.org/archives/18806
https://www.secretovnet.org/archives/17685
https://www.secretovnet.org/archives/17683
https://www.secretovnet.org/archives/17681
https://www.secretovnet.org/archives/13740
https://www.secretovnet.org/archives/13737
https://www.secretovnet.org/archives/13734
https://www.secretovnet.org/archives/13732
https://www.secretovnet.org/archives/13729
https://www.secretovnet.org/archives/17679
https://www.secretovnet.org/archives/17677
https://www.secretovnet.org/archives/17675
https://www.secretovnet.org/archives/17670
https://www.secretovnet.org/archives/17667
https://www.secretovnet.org/archives/18686
https://www.secretovnet.org/archives/18684
https://www.secretovnet.org/archives/18682
https://www.secretovnet.org/archives/17665
https://www.secretovnet.org/archives/17663
https://www.secretovnet.org/archives/17661
https://www.secretovnet.org/archives/17659
https://www.secretovnet.org/archives/17657
https://www.secretovnet.org/archives/13723
https://www.secretovnet.org/archives/13717
https://www.secretovnet.org/archives/13714
https://www.secretovnet.org/archives/13711
https://www.secretovnet.org/archives/13708
https://www.secretovnet.org/archives/17655
https://www.secretovnet.org/archives/13702
https://www.secretovnet.org/archives/17647
https://www.secretovnet.org/archives/17645

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (24 preceding siblings ...)
  2021-10-17 19:48 ` vmireskazki at gmail dot com
@ 2021-10-18 19:58 ` ahmedsayeed1982 at hotmail dot com
  2021-10-19  7:15 ` progonsaytu at gmail dot com
                   ` (9 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: ahmedsayeed1982 at hotmail dot com @ 2021-10-18 19:58 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Canerkin <ahmedsayeed1982 at hotmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ahmedsayeed1982 at hotmail dot com

--- Comment #25 from Canerkin <ahmedsayeed1982 at hotmail dot com> ---
https://malla-espaldera.com/
https://www.hortomallas.com/categoria-producto/mallas-soporte-de-plantas/malla-hortoflor/
https://entutorar.com/
http://malla-anti-aves.com/
https://hortoclips.net/    
https://www.30dayxweightxloss.com/
https://chickenmalla.net/
https://entutorar-tomates.com/
https://poultry-netting.net/
https://www.hortomallas.com/ventajas-de-la-malla-ground-cover/
https://chicken-wire.net/
https://shade-net.net/
https://www.hortomallas.com/categoria-producto/mallas-sombra/obamalla-chin-gon-tejido-hibrido-agricola/
https://chickenmallas.com/
https://chickenmallas.net/
https://crop-netting.net/
https://cucumber-trellis.net/     
https://cultivos-hidroponicos.com/
https://guacamallas.net/
https://horticulture-netting.com/
https://hortoclips.com/
https://hortocost.info/
https://hortocost.net/
https://hortomalha.com/
https://hortomalla.com/
https://hortomallas.cn/
https://hortomallas.hk/
https://malla-sombra.com/
https://malla-tutora.mx/
https://obamalla.net/
https://ortomallas.com/
https://plastic-netting.net/
https://tomato-clips.com/
https://www.hortomallas.com/categoria-producto/malla-privacidad-y-rompevientos/bambutate-cerco-de-carrizo-de-bambu-sintetico/
https://www.hortomallas.com/categoria-producto/mallas-sombra/sole-parasol-para-carro-accesorios-de-vehiculos-que-hacen-sombra-paraguas-sombrillas/
https://www.bestxwayxtolloseweight.com/
https://www.bestxexercisextolloseweightx.com/
https://www.fatxlossxdietz.com/
https://www.hortomallas.com/en/how-creative-individuals-have-been-using-chicken-wire-in-paper-mache/
https://www.hortomallas.com/en/tomato-trellis/
https://www.hortomallas.com/en/fantastic-way-of-growing-pumpkins-on-trellis/
https://www.bestxdietforweightxlloss.com/
https://www.hortomallas.com/en/how-to-use-trellis-netting-in-the-garden-for-desired-plantation/
https://www.hortomallas.com/tipos-gallineros-uso-la-malla-gallinera/
https://www.hortomallas.com/usos-malla-rejilla-manualidades-tapete-tejer-bolsas/
https://www.ketoxweightxloss.com/
https://www.losexweightxin7days.com/
https://www.weightxlosssupplementx.com/
https://www.weightxlossxproducts.com/
https://www.weightxlossxprograms.com/
https://www.seminariostop.com/seminarios-y-talleres/como-importar-de-china-alibaba-aliexpress-dropshipping-peru/
https://trellising-net.com/
https://www.vakantiehuishuren.nl/
https://www.etsy.com/uk/shop/ShopAbsoluteWill
https://dafnasha.com/
https://www.steunsar.nl
https://www.slimmerincasino.nl
https://www.betere-energie.com
https://www.crypto-investeren.com
https://www.beterwedden.com
https://www.huisjehuren.nl/
https://recruitmentkantoor.nl/  
https://recruitmentkantoor.nl/interim-recruiter-huren/
https://recruitmentkantoor.nl/interim-recruitment/
https://fintechzoom.com/reviews/15-best-water-bottles-of-2021/
https://fintechzoom.com/reviews/10-best-yoga-mats-of-2021/
https://fintechzoom.com/reviews/the-greatest-robot-vacuums-for-assure-cleaner-floors/
https://fintechzoom.com/reviews/the-11-best-air-purifiers-in-2021/
https://fintechzoom.com/reviews/the-6-best-cordless-stick-vacuum-in-2021/    
https://pro-sangyoui.com/
https://amazon.com/Christopher-Horne/e/B08D6C1D2P%3Fref=dbs_a_mng_rwt_scns_share
https://nhacai888b.com/
https://www.soicau888.net/
https://kaiyokukan.vn/
https://typhu88.me/
http://twin688.net/
https://photoslate.co/
https://www.alivechristians.com/bible-verses-about-healing-sickness/
https://true-tech.net/
https://footballexpress.in/ 
https://sixsports.in/
https://fitveform.com/ 
https://www.thegamblinggurus.com/
https://nodepositpokeronline.com/
https://onlinecasinoku.com/
https://www.espresso-international.fi/
https://www.espresso-international.it/  
https://slickcashloanca.blogspot.com/
https://www.aaz-credit-immobilier.com/  
https://www.sport-trader.com/
https://www.lespersiennes.com/
https://bestonlinegambler.com/
https://vipcasinotips.com/    
https://casinogamblingideas.com/
https://realmoneycasinoguides.com/ 
https://casinoexpertadvice.com/
https://komopoker5.com/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint  $ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint 
http://vitox-2ch.xyz/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://vloerverwarming.xyz/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://koffieautomaat.xyz/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://motherlode.store/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://yamaro-everyfish.store/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://ipatovo.store/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://tinguely.site/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://wasillahomes.website/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://ruirui.store/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://www.foamhands.store/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://www.i-obchody.info/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://freixenet.site/influencerprogramme/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint https://www.hlungomare.store/      
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint https://www.lungomarebikehotel.store/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint https://www.arborconsult.space/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://fishingnewsletters.co.uk/mail/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://www.go-mk-websites.co.uk/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://www.mconstantine.co.uk/
$ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint http://the-hunters.org/ $ gdb --args gdb -batch test.c
Reading symbols from /home/vries/gdb_versions/devel/gdb...
(gdb) start
Temporary breakpoint

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (25 preceding siblings ...)
  2021-10-18 19:58 ` ahmedsayeed1982 at hotmail dot com
@ 2021-10-19  7:15 ` progonsaytu at gmail dot com
  2021-10-23 13:45 ` fiteva5725 at bomoads dot com
                   ` (8 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: progonsaytu at gmail dot com @ 2021-10-19  7:15 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

progonsaytu <progonsaytu at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |progonsaytu at gmail dot com

--- Comment #26 from progonsaytu <progonsaytu at gmail dot com> ---
https://www.ремонты-квартир.com/
https://www.дизайн-квартиры.com/
https://www.о-ремонте.com/
https://www.о-заборах.com/
https://www.bsegypt.com/
https://www.buyingrealty.net/
https://www.khersonnews.com/
https://www.kontrolstroy.info/
https://www.sama-mama.com/
https://www.secretovnet.org/
https://www.teleriko.com/
https://www.us-best-store.com/
https://www.віктор.com/
https://www.accord-hotel.ru/
https://releazer.ru/
https://www.a-n-e-k-d-o-t.ru/
https://www.adhan.ru/
http://www.al-aures.ru/
https://www.apriori-design.ru/
http://artdoski.ru/
https://www.bombusmod.net.ru/
https://www.canadianahealthandcaremallreviews.ru/
https://www.celestiaproject.ru/
https://www.cryptogu.ru/
https://www.downloadskypefree.ru/
https://www.encyclopedia-flowers.ru/
https://www.factura.net.ru/
http://freewizards.ru/
http://futurefactory.ru/
https://glina-med.ru/
http://google-dmoz.ru/
http://iix.su/
https://www.imperia51.ru/
https://www.info-tehnologii.ru/
https://www.kvartira-v-bolgarii.ru/
https://ljubi-i-pozdravljaj.ru/
https://www.majesticarticles.ru/
https://www.onlinecredit247.ru/
https://www.orfey.net.ru/
https://www.pgpk.net.ru/
https://www.rainbow.net.ru/
http://www.rainbowbaby.ru/
http://www.respublika-okon.ru/
https://ribku-lovim.ru/
http://rusorchestra.ru/
http://shmoscow.ru/
https://www.skifspb.ru/
https://www.spare.net.ru/
https://www.stranainform.ru/
https://www.taxi-smile.ru/
https://www.tkanishik.ru/
http://www.tremulous.net.ru/
https://trust-women.ru/
http://uralbel.ru/
https://www.yar-art-union.ru/
https://www.xn----7sbcngq4awkg0k.xn--p1ai/
https://www.xn----7sbbmgbytlh3a0ll.xn--p1ai/
https://www.xn--35-mlcuxidl.xn--p1ai/
https://www.xn--f1addf1alkk1d.xn--p1ai/
https://www.history-of-great-discoveries.com/
https://www.it-business-trends.com
https://www.interesting-history-of-art.com
https://www.interesting-news-about-cars.com
https://www.architecture-and-design-news.com
https://history-of-great-discoveries.blogspot.com/
https://it-business-trends.blogspot.com/
https://interesting-history-of-art.blogspot.com/
https://interesting-news-about-cars.blogspot.com/
https://architecture-and-design-news.blogspot.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (26 preceding siblings ...)
  2021-10-19  7:15 ` progonsaytu at gmail dot com
@ 2021-10-23 13:45 ` fiteva5725 at bomoads dot com
  2021-10-24 10:02 ` glassmtech at ukr dot net
                   ` (7 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: fiteva5725 at bomoads dot com @ 2021-10-23 13:45 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

fiteva <fiteva5725 at bomoads dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fiteva5725 at bomoads dot com

--- Comment #27 from fiteva <fiteva5725 at bomoads dot com> ---
Nice post mate, keep up the great work, just shared this with my friendz
https://www.neuzeitwerber.de/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (27 preceding siblings ...)
  2021-10-23 13:45 ` fiteva5725 at bomoads dot com
@ 2021-10-24 10:02 ` glassmtech at ukr dot net
  2021-10-29 10:57 ` kimolsun2020 at outlook dot com
                   ` (6 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: glassmtech at ukr dot net @ 2021-10-24 10:02 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

glassmtech <glassmtech at ukr dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |glassmtech at ukr dot net

--- Comment #28 from glassmtech <glassmtech at ukr dot net> ---
http://www.ремонты-квартир.com/
http://www.дизайн-квартиры.com/
http://www.о-ремонте.com/
http://www.о-заборах.com/
http://www.bsegypt.com/
http://www.buyingrealty.net/
http://www.khersonnews.com/
http://www.kontrolstroy.info/
http://www.sama-mama.com/
http://www.secretovnet.org/
http://www.teleriko.com/
http://www.us-best-store.com/
http://www.віктор.com/
http://www.accord-hotel.ru/
http://releazer.ru/
http://www.a-n-e-k-d-o-t.ru/
http://www.adhan.ru/
https://www.al-aures.ru/
http://www.apriori-design.ru/
https://artdoski.ru/
http://www.bombusmod.net.ru/
http://www.canadianahealthandcaremallreviews.ru/
http://www.celestiaproject.ru/
http://www.cryptogu.ru/
http://www.downloadskypefree.ru/
http://www.encyclopedia-flowers.ru/
http://www.factura.net.ru/
https://freewizards.ru/
https://futurefactory.ru/
http://glina-med.ru/
https://google-dmoz.ru/
https://iix.su/
http://www.imperia51.ru/
http://www.info-tehnologii.ru/
http://www.kvartira-v-bolgarii.ru/
http://ljubi-i-pozdravljaj.ru/
http://www.majesticarticles.ru/
http://www.onlinecredit247.ru/
http://www.orfey.net.ru/
http://www.pgpk.net.ru/
http://www.rainbow.net.ru/
https://www.rainbowbaby.ru/
https://www.respublika-okon.ru/
http://ribku-lovim.ru/
https://rusorchestra.ru/
https://shmoscow.ru/
http://www.skifspb.ru/
http://www.spare.net.ru/
http://www.stranainform.ru/
http://www.taxi-smile.ru/
http://www.tkanishik.ru/
https://www.tremulous.net.ru/
http://trust-women.ru/
https://uralbel.ru/
http://www.yar-art-union.ru/
http://www.xn----7sbcngq4awkg0k.xn--p1ai/
http://www.xn----7sbbmgbytlh3a0ll.xn--p1ai/
http://www.xn--35-mlcuxidl.xn--p1ai/
http://www.xn--f1addf1alkk1d.xn--p1ai/
http://www.history-of-great-discoveries.com/
http://www.it-business-trends.com
http://www.interesting-history-of-art.com
http://www.interesting-news-about-cars.com
http://www.architecture-and-design-news.com
https://ремонты-квартир.com/
https://дизайн-квартиры.com/
https://о-ремонте.com/
https://о-заборах.com/
https://bsegypt.com/
https://buyingrealty.net/
https://khersonnews.com/
https://kontrolstroy.info/
https://sama-mama.com/
https://secretovnet.org/
https://teleriko.com/
https://us-best-store.com/
https://віктор.com/
https://accord-hotel.ru/
https://www.releazer.ru/
https://a-n-e-k-d-o-t.ru/
https://adhan.ru/
http://al-aures.ru/
https://apriori-design.ru/
http://www.artdoski.ru/
https://bombusmod.net.ru/
https://canadianahealthandcaremallreviews.ru/
https://celestiaproject.ru/
https://cryptogu.ru/
https://downloadskypefree.ru/
https://encyclopedia-flowers.ru/
https://factura.net.ru/
http://www.freewizards.ru/
http://www.futurefactory.ru/
https://www.glina-med.ru/
http://www.google-dmoz.ru/
http://www.iix.su/
https://imperia51.ru/
https://info-tehnologii.ru/
https://kvartira-v-bolgarii.ru/
https://www.ljubi-i-pozdravljaj.ru/
https://majesticarticles.ru/
https://onlinecredit247.ru/
https://orfey.net.ru/
https://pgpk.net.ru/
https://rainbow.net.ru/
http://rainbowbaby.ru/
http://respublika-okon.ru/
https://www.ribku-lovim.ru/
http://www.rusorchestra.ru/
http://www.shmoscow.ru/
https://skifspb.ru/
https://spare.net.ru/
https://stranainform.ru/
https://taxi-smile.ru/
https://tkanishik.ru/
http://tremulous.net.ru/
https://www.trust-women.ru/
http://www.uralbel.ru/
https://yar-art-union.ru/
https://xn----7sbcngq4awkg0k.xn--p1ai/
https://xn----7sbbmgbytlh3a0ll.xn--p1ai/
https://xn--35-mlcuxidl.xn--p1ai/
https://xn--f1addf1alkk1d.xn--p1ai/
https://history-of-great-discoveries.com/
https://it-business-trends.com
https://interesting-history-of-art.com
https://interesting-news-about-cars.com
https://architecture-and-design-news.com

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (28 preceding siblings ...)
  2021-10-24 10:02 ` glassmtech at ukr dot net
@ 2021-10-29 10:57 ` kimolsun2020 at outlook dot com
  2021-10-29 12:06 ` huracantili20 at gmail dot com
                   ` (5 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: kimolsun2020 at outlook dot com @ 2021-10-29 10:57 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Kuka Kim <kimolsun2020 at outlook dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kimolsun2020 at outlook dot com

--- Comment #29 from Kuka Kim <kimolsun2020 at outlook dot com> ---
https://fintechzoom.com/lifestyle/tech/login/godaddy-email-login/
https://fintechzoom.com/lifestyle/tech/login/telstra-bigpond-webmail-login-the-simple-guide-for-you/
https://gatewit.com/concursos-publicos/
https://www.hensachi-ranking.com/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".


http://fishingnewsletters.co.uk/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

http://www.go-mk-websites.co.uk/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

http://www.mconstantine.co.uk/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

http://the-hunters.org/ 
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (29 preceding siblings ...)
  2021-10-29 10:57 ` kimolsun2020 at outlook dot com
@ 2021-10-29 12:06 ` huracantili20 at gmail dot com
  2021-11-02 15:21 ` gepaw63633 at dukeoo dot com
                   ` (4 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: huracantili20 at gmail dot com @ 2021-10-29 12:06 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

Huracan <huracantili20 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |huracantili20 at gmail dot com

--- Comment #30 from Huracan <huracantili20 at gmail dot com> ---
https://fintechzoom.com/lifestyle/tech/login/godaddy-email-login/
https://fintechzoom.com/lifestyle/tech/login/telstra-bigpond-webmail-login-the-simple-guide-for-you/
https://gatewit.com/concursos-publicos/
https://www.hensachi-ranking.com/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".


http://fishingnewsletters.co.uk/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

http://www.go-mk-websites.co.uk/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

http://www.mconstantine.co.uk/
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

http://the-hunters.org/ 
/home/vries/gdb_versions/devel/build/gdb/testsuite/../data-directory -q -nw -nx
-batch test.c
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (30 preceding siblings ...)
  2021-10-29 12:06 ` huracantili20 at gmail dot com
@ 2021-11-02 15:21 ` gepaw63633 at dukeoo dot com
  2021-11-06 21:11 ` paneki8601 at dukeoo dot com
                   ` (3 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: gepaw63633 at dukeoo dot com @ 2021-11-02 15:21 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

gepaw <gepaw63633 at dukeoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gepaw63633 at dukeoo dot com

--- Comment #31 from gepaw <gepaw63633 at dukeoo dot com> ---
Thank you so much for sharing this great blog.Very inspiring and helpful
too.Hope you continue to share more of your ideas.I will definitely love to
read.
https://meridianplumbing.co.uk

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (31 preceding siblings ...)
  2021-11-02 15:21 ` gepaw63633 at dukeoo dot com
@ 2021-11-06 21:11 ` paneki8601 at dukeoo dot com
  2021-11-13 19:31 ` tesaso8237 at funboxcn dot com
                   ` (2 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: paneki8601 at dukeoo dot com @ 2021-11-06 21:11 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

paneki <paneki8601 at dukeoo dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |paneki8601 at dukeoo dot com

--- Comment #32 from paneki <paneki8601 at dukeoo dot com> ---
Thanks so much for this information.  I have to let you know I concur on
several of the points you make here and others may require some further review,
but I can see your viewpoint.
https://www.jltstore.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (32 preceding siblings ...)
  2021-11-06 21:11 ` paneki8601 at dukeoo dot com
@ 2021-11-13 19:31 ` tesaso8237 at funboxcn dot com
  2021-11-16 19:04 ` xecana8007 at funboxcn dot com
  2021-11-22  7:37 ` gexed96894 at keagenan dot com
  35 siblings, 0 replies; 37+ messages in thread
From: tesaso8237 at funboxcn dot com @ 2021-11-13 19:31 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

tesaso8237 at funboxcn dot com <tesaso8237 at funboxcn dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tesaso8237 at funboxcn dot com

--- Comment #33 from tesaso8237 at funboxcn dot com <tesaso8237 at funboxcn dot com> ---
hi was just seeing if you minded a comment. i like your website and the them
you picked is super. I will be back.
email marketing companies       https://blubirdmarketing.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (33 preceding siblings ...)
  2021-11-13 19:31 ` tesaso8237 at funboxcn dot com
@ 2021-11-16 19:04 ` xecana8007 at funboxcn dot com
  2021-11-22  7:37 ` gexed96894 at keagenan dot com
  35 siblings, 0 replies; 37+ messages in thread
From: xecana8007 at funboxcn dot com @ 2021-11-16 19:04 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

tesaso8237 at funboxcn dot comxecana8007@funboxcn.com <xecana8007 at funboxcn dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xecana8007 at funboxcn dot com

--- Comment #34 from tesaso8237 at funboxcn dot comxecana8007@funboxcn.com <xecana8007 at funboxcn dot com> ---
Great article with excellent idea!Thank you for such a valuable article. I
really appreciate for this great information..
https://www.butikmasajuzmani.com/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug breakpoints/26881] infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed.
  2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
                   ` (34 preceding siblings ...)
  2021-11-16 19:04 ` xecana8007 at funboxcn dot com
@ 2021-11-22  7:37 ` gexed96894 at keagenan dot com
  35 siblings, 0 replies; 37+ messages in thread
From: gexed96894 at keagenan dot com @ 2021-11-22  7:37 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=26881

gexed96894 <gexed96894 at keagenan dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gexed96894 at keagenan dot com

--- Comment #35 from gexed96894 <gexed96894 at keagenan dot com> ---
Hey There. I found your blog using msn. This is a very well written article.
I’ll be sure to bookmark it and come back to read more of your useful info.
Thanks for the post. I’ll definitely return.
buy IPO stocks  https://crosswork.us/

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

end of thread, other threads:[~2021-11-22  7:37 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-14  9:58 [Bug gdb/26881] New: infrun.c:6384: internal-error: void process_event_stop_test(execution_control_state*): Assertion `ecs->event_thread->control.exception_resume_breakpoint != NULL' failed vries at gcc dot gnu.org
2020-11-14 10:41 ` [Bug gdb/26881] " vries at gcc dot gnu.org
2020-11-14 10:45 ` vries at gcc dot gnu.org
2020-11-14 10:49 ` vries at gcc dot gnu.org
2020-11-14 13:07 ` vries at gcc dot gnu.org
2020-11-14 19:45 ` vries at gcc dot gnu.org
2020-11-15  0:24 ` vries at gcc dot gnu.org
2020-11-15  0:30 ` vries at gcc dot gnu.org
2020-11-16 14:35 ` vries at gcc dot gnu.org
2020-11-21  8:58 ` vries at gcc dot gnu.org
2021-01-05 10:41 ` vries at gcc dot gnu.org
2021-01-05 10:44 ` vries at gcc dot gnu.org
2021-01-05 13:30 ` [Bug breakpoints/26881] " vries at gcc dot gnu.org
2021-01-08 10:11 ` cvs-commit at gcc dot gnu.org
2021-01-08 10:58 ` cvs-commit at gcc dot gnu.org
2021-01-08 11:00 ` vries at gcc dot gnu.org
2021-06-27 17:49 ` ahmedsayeed1982 at yahoo dot com
2021-08-10 11:45 ` ucelsanicin at yahoo dot com
2021-08-27 17:51 ` ribevi6798 at enamelme dot com
2021-08-28 18:31 ` buranlevent at yahoo dot com
2021-09-06  9:10 ` focixujo at livinginsurance dot co.uk
2021-09-10 19:40 ` mehmetgelisin at aol dot com
2021-09-14 17:28 ` johnb6174 at gmail dot com
2021-09-14 18:48 ` mark at klomp dot org
2021-10-09 11:00 ` gulsenenginar at aol dot com
2021-10-17 19:48 ` vmireskazki at gmail dot com
2021-10-18 19:58 ` ahmedsayeed1982 at hotmail dot com
2021-10-19  7:15 ` progonsaytu at gmail dot com
2021-10-23 13:45 ` fiteva5725 at bomoads dot com
2021-10-24 10:02 ` glassmtech at ukr dot net
2021-10-29 10:57 ` kimolsun2020 at outlook dot com
2021-10-29 12:06 ` huracantili20 at gmail dot com
2021-11-02 15:21 ` gepaw63633 at dukeoo dot com
2021-11-06 21:11 ` paneki8601 at dukeoo dot com
2021-11-13 19:31 ` tesaso8237 at funboxcn dot com
2021-11-16 19:04 ` xecana8007 at funboxcn dot com
2021-11-22  7:37 ` gexed96894 at keagenan dot com

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).