blob: ad9828ebf51d6c3c6cb04b805ed51a66fc95fbe1 [file] [log] [blame]
//===----------- Assert.cpp - Implementation of the Assert class ---------===//
//
// The VMKit project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "JavaObject.h"
#include "JavaThread.h"
using namespace jnjvm;
extern "C" void Java_org_j3_mmtk_Assert_dumpStack__ () { JavaThread::get()->printBacktrace(); abort(); }