From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26360 invoked by alias); 9 Jun 2003 09:55:23 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 26198 invoked from network); 9 Jun 2003 09:55:17 -0000 Received: from unknown (HELO smtp8.access.co.jp) (157.78.36.253) by sources.redhat.com with SMTP; 9 Jun 2003 09:55:17 -0000 Received: (qmail 6245 invoked from network); 9 Jun 2003 18:55:15 +0900 Received: from unknown (HELO smtp5.access.co.jp) (157.78.36.243) by 0 with SMTP; 9 Jun 2003 18:55:15 +0900 Received: (qmail 12813 invoked by alias); 9 Jun 2003 18:55:15 +0900 Received: (qmail 12801 invoked from network); 9 Jun 2003 18:55:15 +0900 Received: from unknown (HELO ADMIN) (157.78.69.163) by 0 with SMTP; 9 Jun 2003 18:55:15 +0900 From: "Raja Saleru" To: "Gdb Redhat" Subject: gdbserver Linux_low.c Date: Mon, 09 Jun 2003 09:55:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-SW-Source: 2003-06/txt/msg00100.txt.bz2 Hi In gdbserver source file Linux_low.c look at the following data structure static struct target_ops linux_target_ops = { linux_create_inferior, linux_attach, linux_kill, linux_thread_alive, linux_resume, linux_wait, linux_fetch_registers, linux_store_registers, linux_read_memory, linux_write_memory, linux_look_up_symbols, }; the last member linux_look_up_symbols, what this function does ? This is assigned to the following function linux_look_up_symbols (void) { #ifdef USE_THREAD_DB if (using_threads) return; using_threads = thread_db_init (); #endif } Actually where it does any symbol related functionality ? can anybody clarrify these questions ? Thanks in advance Regards Raja Saleru