diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-08 12:40:29 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-09 00:59:06 +0900 |
commit | f2ceb891968886c2e1804b57070fe1376be6d646 (patch) | |
tree | 43e1f6b7bc2d06b826c7a51e19cdc308f37bcf56 /i386 | |
parent | 8d2e05732d773546714a78dbc603b09d2504f1de (diff) |
Use db_addr_t instead of db_expr_t
In this way everything falls into place and there is one cast less.
Function db_task_printsym() is already always called with the cast to
db_addr_t in the first argument.
* ddb/db_aout.c (aout_db_line_at_pc): Use db_addr_t instead of db_expr_t.
(aout_db_search_by_addr): Don't cast to vm_offset_t. Argument is already
db_addr_t.
* ddb/db_aout.h (aout_db_line_at_pc): Use db_addr_t instead of db_expr_t.
* ddb/db_sym.c (db_task_printsym): Likewise.
(db_line_at_pc): Likewise.
* ddb/db_sym.h (db_task_printsym): Likewise.
(db_line_at_pc): Likewise.
* i386/i386/db_trace.c (db_task_printsym): Cast to db_addr_t instead of db_expr_t.
Member swap_func is a pointer to void.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/db_trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386/db_trace.c b/i386/i386/db_trace.c index 3a5148a..fb65524 100644 --- a/i386/i386/db_trace.c +++ b/i386/i386/db_trace.c @@ -378,7 +378,7 @@ db_stack_trace_cmd( struct i386_saved_state *iss = &th->pcb->iss; db_printf("Continuation "); - db_task_printsym((db_expr_t)th->swap_func, + db_task_printsym((db_addr_t)th->swap_func, DB_STGY_PROC, th->task); db_printf("\n"); |