summaryrefslogtreecommitdiffstats
path: root/runtime/sym.h
diff options
context:
space:
mode:
authorhunt <hunt>2006-11-09 17:48:21 +0000
committerhunt <hunt>2006-11-09 17:48:21 +0000
commit3a7667d97d2157af1d53c075f325d2d009d50859 (patch)
tree0bf2e9d1236583bda826638bd631e6b0d55be807 /runtime/sym.h
parent1aa8ca8402501fc631f9eb5ee06ef316f01878f1 (diff)
downloadsystemtap-steved-3a7667d97d2157af1d53c075f325d2d009d50859.tar.gz
systemtap-steved-3a7667d97d2157af1d53c075f325d2d009d50859.tar.xz
systemtap-steved-3a7667d97d2157af1d53c075f325d2d009d50859.zip
2006-11-09 Martin Hunt <hunt@redhat.com>
* sym.h: Change int to int32_t.
Diffstat (limited to 'runtime/sym.h')
-rw-r--r--runtime/sym.h6
1 files changed, 3 insertions, 3 deletions
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 */