comparison src/share/vm/utilities/vmError.hpp @ 614:3db67f76d308

Merge
author acorn
date Thu, 05 Mar 2009 22:07:29 -0500
parents dbbe28fc66b5
children 7bb995fbd3c0
comparison
equal deleted inserted replaced
613:5caef2219893 614:3db67f76d308
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;