thread_linux_ppc.cpp revision 6183:82e948a2f134
1254721Semaste/*
2254721Semaste * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
3254721Semaste * Copyright 2012, 2014 SAP AG. All rights reserved.
4254721Semaste * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5254721Semaste *
6254721Semaste * This code is free software; you can redistribute it and/or modify it
7254721Semaste * under the terms of the GNU General Public License version 2 only, as
8254721Semaste * published by the Free Software Foundation.
9254721Semaste *
10254721Semaste * This code is distributed in the hope that it will be useful, but WITHOUT
11254721Semaste * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12254721Semaste * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13254721Semaste * version 2 for more details (a copy is included in the LICENSE file that
14254721Semaste * accompanied this code).
15254721Semaste *
16254721Semaste * You should have received a copy of the GNU General Public License version
17254721Semaste * 2 along with this work; if not, write to the Free Software Foundation,
18254721Semaste * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19254721Semaste *
20254721Semaste * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21254721Semaste * or visit www.oracle.com if you need additional information or have any
22254721Semaste * questions.
23254721Semaste *
24254721Semaste */
25254721Semaste
26254721Semaste#include "precompiled.hpp"
27254721Semaste#include "runtime/frame.hpp"
28254721Semaste#include "runtime/thread.hpp"
29254721Semaste
30254721Semaste// Forte Analyzer AsyncGetCallTrace profiling support is not implemented on Linux/PPC.
31254721Semastebool JavaThread::pd_get_top_frame_for_signal_handler(frame* fr_addr, void* ucontext, bool isInJava) {
32254721Semaste  Unimplemented();
33254721Semaste  return false;
34254721Semaste}
35254721Semaste
36254721Semastevoid JavaThread::cache_global_variables() { }
37254721Semaste