mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
* linux-thread-db.c (thread_db_get_thread_local_address): Fix type
mismatch. * tui/tui-stack.c (tui_show_frame_info): Likewise.
This commit is contained in:
parent
172553c733
commit
8717790563
@ -1,3 +1,9 @@
|
||||
2006-08-02 Thiemo Seufer <ths@mips.com>
|
||||
|
||||
* linux-thread-db.c (thread_db_get_thread_local_address): Fix type
|
||||
mismatch.
|
||||
* tui/tui-stack.c (tui_show_frame_info): Likewise.
|
||||
|
||||
2006-08-01 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* c-exp.y (type): Remove incorrect pointer to member case.
|
||||
|
@ -1080,7 +1080,8 @@ thread_db_get_thread_local_address (ptid_t ptid,
|
||||
thread_db_map_id2thr (thread_info, 1);
|
||||
|
||||
/* Finally, get the address of the variable. */
|
||||
err = td_thr_tls_get_addr_p (&thread_info->private->th, (void *) lm,
|
||||
err = td_thr_tls_get_addr_p (&thread_info->private->th,
|
||||
(void *)(size_t) lm,
|
||||
offset, &address);
|
||||
|
||||
#ifdef THREAD_DB_HAS_TD_NOTALLOC
|
||||
|
@ -356,7 +356,7 @@ tui_show_frame_info (struct frame_info *fi)
|
||||
else
|
||||
{
|
||||
if (find_pc_partial_function (get_frame_pc (fi), (char **) NULL,
|
||||
&low, (CORE_ADDR) NULL) == 0)
|
||||
&low, (CORE_ADDR) 0) == 0)
|
||||
error (_("No function contains program counter for selected frame."));
|
||||
else
|
||||
low = tui_get_low_disassembly_address (low, get_frame_pc (fi));
|
||||
|
Loading…
Reference in New Issue
Block a user