methodcache.h

来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· C头文件 代码 · 共 29 行

H
29
字号
/* * methodCache.h * * A faster way to find a translated method given a pc. * * Copyright (c) 1998, 1999 *      Transvirtual Technologies, Inc.  All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file. * * Written by Godmar Back <gback@cs.utah.edu> */#if 0#ifndef __kaffevm_methodcache_h#define __kaffevm_methodcache_hextern bool makeMethodActive(Method* meth);extern void makeMethodInactive(Method* meth);extern void dumpActiveMethods(jobject printstream, jobject loader);extern void walkActiveMethods(void *arg,			      void (*walker)(void *arg, Method *meth));#endif /* __kaffevm_methodcache_h */#endif

⌨️ 快捷键说明

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