/* * $Id$ * * Copyright (C) 2003-2015 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package sun.misc; import java.nio.ByteBuffer; /** * @see sun.misc.Perf */ class NativePerf { /** * @see sun.misc.Perf#attach(java.lang.String, int, int) */ private static ByteBuffer attach(Perf instance, String arg1, int arg2, int arg3) { //todo implement it throw new UnsupportedOperationException(); } /** * @see sun.misc.Perf#detach(java.nio.ByteBuffer) */ private static void detach(Perf instance, ByteBuffer arg1) { //todo implement it throw new UnsupportedOperationException(); } /** * @see sun.misc.Perf#createLong(java.lang.String, int, int, long) */ private static ByteBuffer createLong(Perf instance, String arg1, int arg2, int arg3, long arg4) { //todo implement it throw new UnsupportedOperationException(); } /** * @see sun.misc.Perf#createByteArray(java.lang.String, int, int, byte[], int) */ private static ByteBuffer createByteArray(Perf instance, String arg1, int arg2, int arg3, byte[] arg4, int arg5) { //todo implement it throw new UnsupportedOperationException(); } /** * @see sun.misc.Perf#highResCounter() */ private static long highResCounter(Perf instance) { //todo implement it throw new UnsupportedOperationException(); } /** * @see sun.misc.Perf#highResFrequency() */ private static long highResFrequency(Perf instance) { //todo implement it throw new UnsupportedOperationException(); } /** * @see sun.misc.Perf#registerNatives() */ private static void registerNatives() { //todo implement it throw new UnsupportedOperationException(); } }