comparison src/share/vm/utilities/vmError.hpp @ 603:dbbe28fc66b5

6778669: Patch from Red Hat -- fixes compilation errors Summary: Some fixes which are required to build on recent GCCs. Reviewed-by: never, kvn Contributed-by: langel@redhat.com
author twisti
date Fri, 27 Feb 2009 03:35:40 -0800
parents 2328d1d3f8cf
children 7bb995fbd3c0
comparison
equal deleted inserted replaced
602:ed6404fac86b 603:dbbe28fc66b5
1 /* 1 /*
2 * Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
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 size_t _lineno; 53 int _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;