diff options
-rw-r--r-- | runtime/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/sym.h | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index c04a56cc..3eae4158 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2006-11-09 Martin Hunt <hunt@redhat.com> + + * sym.h: Change int to int32_t. + 2006-11-09 Li Guanglei <guanglei@cn.ibm.com> * runtime/lket/b2a/lket_b2a.[ch]: add options to control diff --git a/runtime/sym.h b/runtime/sym.h index 4bbbbbb5..82a0cfcd 100644 --- a/runtime/sym.h +++ b/runtime/sym.h @@ -32,14 +32,14 @@ struct _stp_module { unsigned long data; /* how many symbols this module has that we are interested in */ - unsigned num_symbols; + uint32_t num_symbols; /* how many sections this module has */ - unsigned num_sections; + uint32_t num_sections; struct _stp_symbol *sections; /* how the symbol_data below was allocated */ - int allocated; /* 0 = kmalloc, 1 = vmalloc */ + int32_t allocated; /* 0 = kmalloc, 1 = vmalloc */ /* an array of num_symbols _stp_symbol structs */ struct _stp_symbol *symbols; /* ordered by address */ |