blob: 359f4dcc9ebfd40ff1c2513df2ca3806b390ec2c [file] [log] [blame]
//===-------- SynchronizedCounter.cpp -------------------------------------===//
//===-------- Implementation of the SynchronizedCounter 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_SynchronizedCounter_reset__ () { JavaThread::get()->printBacktrace(); abort(); }
extern "C" void Java_org_j3_mmtk_SynchronizedCounter_increment__ () { JavaThread::get()->printBacktrace(); abort(); }