From 3a7667d97d2157af1d53c075f325d2d009d50859 Mon Sep 17 00:00:00 2001 From: hunt Date: Thu, 9 Nov 2006 17:48:21 +0000 Subject: 2006-11-09 Martin Hunt * sym.h: Change int to int32_t. --- runtime/sym.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/sym.h') 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 */ -- cgit