From b5057acde36b5a9a52e1505a29091ec17c0b6ac5 Mon Sep 17 00:00:00 2001 From: Daniel Jacobowitz Date: Mon, 5 Feb 2007 20:02:51 +0000 Subject: [PATCH] * linux-thread-db.c (check_for_thread_db): Return early if we have no libthread_db support. --- gdb/ChangeLog | 5 +++++ gdb/linux-thread-db.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6b8d590..781377e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2007-02-05 Daniel Jacobowitz + * linux-thread-db.c (check_for_thread_db): Return early if we have + no libthread_db support. + +2007-02-05 Daniel Jacobowitz + * mi/mi-parse.h: Include . 2007-02-05 Nick Roberts diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c index 3a18c9e..7e5e4eb 100644 --- a/gdb/linux-thread-db.c +++ b/gdb/linux-thread-db.c @@ -581,6 +581,10 @@ check_for_thread_db (void) td_err_e err; static int already_loaded; + /* Do nothing if we couldn't load libthread_db.so.1. */ + if (td_ta_new_p == NULL) + return; + /* First time through, report that libthread_db was successfuly loaded. Can't print this in in thread_db_load as, at that stage, the interpreter and it's console haven't started. */ -- 2.7.4