threaddata.h
来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· C头文件 代码 · 共 42 行
H
42 行
#ifndef __thread_data_h#define __thread_data_h#include "jni.h"#include "stackTrace-impl.h"#include "exception.h"#include "jnirefs.h"#include "ksem.h"/* * Structure that defines any per-thread data needed by kaffe. */typedef struct _threadData { JNIEnv jniEnv; void *jlThread; /* required by the jnireferences stuff */#ifdef NEED_JNIREFS jnirefs *jnireferences;#endif /* things necessary for jvmpi */#ifdef ENABLE_JVMPI struct _exceptionFrame topFrame; void *jvmpiData;#endif /* things required by the locking subsystem */ struct Ksem sem; struct _jthread *nextlk; /* things required for exception handling */ VmExceptHandler *exceptPtr; struct Hjava_lang_Throwable *exceptObj; int needOnStack;} threadData;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?