diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2011-01-06 19:56:44 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2011-01-06 19:56:44 +0000 |
commit | a255712f6589e84469ad702e4f9a53bec250fb9f (patch) | |
tree | 5727491766814448cda59da5541f6965f2b96cb7 /gdb/jit.h | |
parent | ae428b57523c774b519637ac6d40896b9ef01893 (diff) | |
download | gdb-a255712f6589e84469ad702e4f9a53bec250fb9f.zip gdb-a255712f6589e84469ad702e4f9a53bec250fb9f.tar.gz gdb-a255712f6589e84469ad702e4f9a53bec250fb9f.tar.bz2 |
ChangeLog:
2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
* jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
* jit.c (jit_debug): New variable.
(show_jit_debug): New function.
(struct target_buffer): Use ULONGEST.
(bfd_open_from_target_memory): Likewise.
(jit_register_code, jit_inferior_init): Add debug output.
(_initialize_jit): Register "debug jit" command.
doc/ChangeLog:
2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
* gdb.texinfo (Debugging Output): Document "set debug jit".
Diffstat (limited to 'gdb/jit.h')
-rw-r--r-- | gdb/jit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ struct jit_code_entry CORE_ADDR next_entry; CORE_ADDR prev_entry; CORE_ADDR symfile_addr; - uint64_t symfile_size; + ULONGEST symfile_size; }; /* This is the global descriptor that the inferior uses to communicate |