mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-03 23:56:39 +00:00
2009-10-28 Michael Snyder <msnyder@vmware.com>
* findvar.c (top level): Fix and add comments.
This commit is contained in:
parent
66c53f2b15
commit
9659616a96
@ -1,3 +1,7 @@
|
||||
2009-10-28 Michael Snyder <msnyder@vmware.com>
|
||||
|
||||
* findvar.c (top level): Fix and add comments.
|
||||
|
||||
2009-11-10 Keith Seitz <keiths@redhat.com>
|
||||
|
||||
* c-expy. (operator_stoken): New function.
|
||||
@ -65,6 +69,11 @@
|
||||
inferior_ptid before calling procfs_do_thread_registers since
|
||||
the function already saves and restores it before returning.
|
||||
|
||||
2009-11-10 Michael Snyder <msnyder@vmware.com>
|
||||
|
||||
* dcache.c (dcache_invalidate_line): Remove block from used list
|
||||
when adding it to freed list.
|
||||
|
||||
2009-11-10 Michael Snyder <msnyder@vmware.com>
|
||||
|
||||
* dcache.c: Fix typo, shorten long lines in comment.
|
||||
|
@ -36,8 +36,9 @@
|
||||
#include "block.h"
|
||||
#include "objfiles.h"
|
||||
|
||||
/* Basic byte-swapping routines. GDB has needed these for a long time...
|
||||
All extract a target-format integer at ADDR which is LEN bytes long. */
|
||||
/* Basic byte-swapping routines. All 'extract' functions return a
|
||||
host-format integer from a target-format integer at ADDR which is
|
||||
LEN bytes long. */
|
||||
|
||||
#if TARGET_CHAR_BIT != 8 || HOST_CHAR_BIT != 8
|
||||
/* 8 bit characters are a pretty safe assumption these days, so we
|
||||
@ -179,6 +180,8 @@ extract_typed_address (const gdb_byte *buf, struct type *type)
|
||||
return gdbarch_pointer_to_address (get_type_arch (type), type, buf);
|
||||
}
|
||||
|
||||
/* All 'store' functions accept a host-format integer and store a
|
||||
target-format integer at ADDR which is LEN bytes long. */
|
||||
|
||||
void
|
||||
store_signed_integer (gdb_byte *addr, int len,
|
||||
|
Loading…
x
Reference in New Issue
Block a user