hotspot/src/share/vm/utilities/errorReporter.hpp
author kbarrett
Tue, 13 Jan 2015 14:30:53 -0500
changeset 28477 157314902d78
parent 8294 9089bd3bf069
permissions -rw-r--r--
8068396: Rename assert() to vmassert() Summary: Macro renaming, with temporary old name synonyms for compatibilty Reviewed-by: ehelin, dholmes, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     1
/*
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     2
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     4
 *
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     8
 *
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    13
 * accompanied this code).
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    14
 *
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    18
 *
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    21
 * questions.
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    22
 *
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    23
 */
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    24
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    25
#ifndef SHARE_VM_UTILITIES_ERRORREPORTER_HPP
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    26
#define SHARE_VM_UTILITIES_ERRORREPORTER_HPP
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    27
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    28
#include "utilities/globalDefinitions.hpp"
8294
9089bd3bf069 7022659: errorHandler doesn't compile without precompiled headers
coleenp
parents: 8114
diff changeset
    29
#include "memory/allocation.hpp"
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    30
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    31
class ErrorReporter : public StackObj {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    32
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    33
public:
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    34
  ErrorReporter();
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    35
  ~ErrorReporter(){};
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    36
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    37
  void call(FILE* fd, char *buffer, int length);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    38
};
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    39
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
diff changeset
    40
#endif // ndef SHARE_VM_UTILITIES_ERRORREPORTER_HPP