⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tracker.java

📁 一个小公司要求给写的很简单的任务管理系统。
💻 JAVA
字号:
/* * @(#)Tracker.java	1.7 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package sun.tools.hprof;/* This class and it's methods are used by 5.0 hprof when injecting bytecodes *   into class file images. *   WARNING: This class may not be used by newer versions of hprof. *   See the directory src/share/demo/jvmti/hprof and the file README.txt *   for more details. */public class Tracker {     /* Master switch that activates calls to native functions. */        private static int engaged = 0;       /* To track memory allocated, we need to catch object init's and arrays. */        /* At the beginning of java.jang.Object.<init>(), a call to     *   sun.tools.hprof.Tracker.ObjectInit() is injected.     */    private static native void nativeObjectInit(Object thr, Object obj);        public static void ObjectInit(Object obj)    {	if ( engaged != 0 ) {	    nativeObjectInit(Thread.currentThread(), obj);	}    }        /* Immediately following any of the newarray bytecodes, a call to     *   sun.tools.hprof.Tracker.NewArray() is injected.     */    private static native void nativeNewArray(Object thr, Object obj);       public static void NewArray(Object obj)    {	if ( engaged != 0 ) {	    nativeNewArray(Thread.currentThread(), obj);	}    }       /* For cpu time spent in methods, we need to inject for every method. */    /* At the very beginning of every method, a call to     *   sun.tools.hprof.Tracker.CallSite() is injected.     */    private static native void nativeCallSite(Object thr, int cnum, int mnum);        public static void CallSite(int cnum, int mnum)    {	if ( engaged != 0 ) {	    nativeCallSite(Thread.currentThread(), cnum, mnum);	}    }        /* Before any of the return bytecodes, a call to     *   sun.tools.hprof.Tracker.ReturnSite() is injected.     */    private static native void nativeReturnSite(Object thr, int cnum, int mnum);        public static void ReturnSite(int cnum, int mnum)    {	if ( engaged != 0 ) {	    nativeReturnSite(Thread.currentThread(), cnum, mnum);	}    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -