comparison src/share/vm/utilities/vmError.hpp @ 513:2328d1d3f8cf

6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2 Summary: Fixed the wrong cast between types since more restrictions are imposed by gcc 4.3.2 Reviewed-by: jcoomes, acorn, phh, never
author xlu
date Wed, 24 Dec 2008 19:13:53 -0800
parents a61af66fc99e
children 0fbdb4381b99 dbbe28fc66b5
comparison
equal deleted inserted replaced
512:db4caa99ef11 513:2328d1d3f8cf
48 void * _context; // ContextRecord on Windows, 48 void * _context; // ContextRecord on Windows,
49 // ucontext_t on Solaris/Linux 49 // ucontext_t on Solaris/Linux
50 50
51 // additional info for VM internal errors 51 // additional info for VM internal errors
52 const char * _filename; 52 const char * _filename;
53 int _lineno; 53 size_t _lineno;
54 54
55 // used by fatal error handler 55 // used by fatal error handler
56 int _current_step; 56 int _current_step;
57 const char * _current_step_info; 57 const char * _current_step_info;
58 int _verbose; 58 int _verbose;