=?koi8-r?Q?g=5Fspawn=5Fasync=5Fwith=5Fpipes_and_child_signals?=



Hello everybody,

I'm spawning GDB with g_spawn_async_with_pipes in IDE extension written in GTK,
and have a problem sending "-exec-interrupt" request to it via g_io_channel_write_chars.
When I'm trying to do so, parent IDE process receives SIGINT even if I set "signal(SIGINT, SIG_IGN)" right before
calling g_io_channel_write_chars.
If I send another command (-break-list for example) in the same situation -
no problem, so I suppose it's related somehow to the signals GDB sends to it's parent when
interrupting debugging process, but I'm confused about how to deal with it.
The stack trace is like that:

#0  0xb7fe2424 in __kernel_vsyscall ()
#1  0xb767f01b in write () from /lib/i686/cmov/libpthread.so.0
#2  0xb7844b16 in ?? () from /lib/libglib-2.0.so.0
#3  0xb77f529c in g_io_channel_write_chars () from /lib/libglib-2.0.so.0
#4  0xb35dfe08 in on_send_to_gdb (src=0x84ec5c0, cond=G_IO_OUT, data=0x0) at dbm_gdm.c:331
#5  0xb78446db in ?? () from /lib/libglib-2.0.so.0
#6  0xb7800305 in g_main_context_dispatch () from /lib/libglib-2.0.so.0
#7  0xb7803fe8 in ?? () from /lib/libglib-2.0.so.0
#8  0xb7804527 in g_main_loop_run () from /lib/libglib-2.0.so.0
#9  0xb7d22e19 in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0
#10 0x080bc845 in ?? ()
#11 0xb7542c76 in __libc_start_main () from /lib/i686/cmov/libc.so.6
#12 0x0805cd21 in ?? ()

Thank you,

Alexander


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