blob: 5cd646fac139c9d9d1e813b4fbe1af31678c5ee4 [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 j3;
extern "C" void Java_org_j3_mmtk_Assert_dumpStack__ () { JavaThread::get()->printBacktrace(); abort(); }