aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@adacore.com>2017-11-21 14:03:06 -0800
committerJoel Brobecker <brobecker@adacore.com>2017-11-21 14:32:48 -0800
commitcf3fbed4a00e668ffcad1b878eccec87334fdcff (patch)
tree1bd89b505e9f0ef68bb4b088b5a150be6f687316 /etc
parent9edcc12f9b714149f84bcf20dbdad91f030e62de (diff)
downloadgdb-cf3fbed4a00e668ffcad1b878eccec87334fdcff.zip
gdb-cf3fbed4a00e668ffcad1b878eccec87334fdcff.tar.gz
gdb-cf3fbed4a00e668ffcad1b878eccec87334fdcff.tar.bz2
problem debugging ravenscar programs if runtime is stripped
Trying to debug a program using a stripped version of the ravenscar runtime, we can get the following error: (gdb) cont Continuing. Cannot find Ada_Task_Control_Block type. Aborting This is because the ravenscar-thread layer makes the assumption that the runtime is built the way we expect it, meaning that the Ada tasking units we rely on for Ada tasking debugging, are built with debugging information, and that this debug information has not been stripped from the runtime. When this assumption is not true, resuming such a program can trigger the error above, which then leads GDB a little confused. For instance, we can see things like: (gdb) bt Target is executing. This patch fixes the issue by disabling the ravenscar thread layer if we detect that the runtime is missing some of the debugging info we need in order to support Ada task debugging. This is the best we can do, as the ravenscar-thread layer actually depends on the ada-tasks layer to implement thread debugging. gdb/ChangeLog: * ada-lang.h (ada_get_tcb_types_info): Add declaration. * ada-tasks.c (ada_get_tcb_types_info): Renames get_tcb_types_info. Make non-static. Change return type to char *. Adjust code accordingly. Rewrite the function's documentation. (read_atcb): Adjust call to get_tcb_types_info accordingly. * ravenscar-thread.c (ravenscar_inferior_created): Check that we have enough debugging information in the runtime to support Ada task debugging before we enable the ravenscar-thread layer.
Diffstat (limited to 'etc')
0 files changed, 0 insertions, 0 deletions