JNI|在子线程中获得JNIEnv|AttachCurrentThread

A JNI interface pointer (JNIEnv*) is passed as an argument for each native function mapped to a Java method, allowing for interaction with the JNI environment within the native method.This JNI interface pointer can be stored, but remains valid only in the current thread. Other threads must first call AttachCurrentThread()to attach themselves to the VM and obtain a JNI interface pointer. Once attached, a native thread works like a regular Java thread running within a native method. The native thread remains attached to the VM until it callsDetachCurrentThread() to detach itself.[3]

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
void Call_Back_Invoke( void *user,int notify_id, unsigned int param )
{
    bool  isAttacked = false;
    JNIEnv* env;
    if(NULL == jni_tmpc.g_JVM)
    {
        LOGE("g_JVM == NULL");
        return ;
    }
    int status = (jni_tmpc.g_JVM)->GetEnv((void **) &env, jni_tmpc.g_JNI_VERSION);
 
    if(status < 0) {
        LOGD("callback_handler:failed to get JNI environment assuming native thread");
        status = jni_tmpc.g_JVM->AttachCurrentThread(&env, NULL);
        if(status < 0) {
           LOGE("callback_handler: failed to attach current thread");
            return;
        }
        isAttacked = true;
    }
 
    switch( notify_id ){
      case...
      }
    if(isAttacked) {
      (jni_tmpc.g_JVM)->DetachCurrentThread();
    }  
    LOGE("jni Call_Back_Invoke(1) notify_id = %d",notify_id );
}
posted @   porter_代码工作者  阅读(2274)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
点击右上角即可分享
微信分享提示