AndroidJNI.AttachCurrentThread

1:AndroidJNI.AttachCurrentThread 附加当前线程

转自:http://game.ceeger.com/Script/AndroidJNI/AndroidJNI.AttachCurrentThread.html


static function AttachCurrentThread () : int

Description描述

Attaches the current thread to a Java (Dalvik) VM.

附加当前线程到一个Java(Dalvik)虚拟机。

A thread must be attached to the VM before any other JNI calls can be made.

一个线程必须附加到虚拟机,在任何其他JNI可调用之前。

Returns 0 on success; returns a negative number on failure.

成功返回0,失败返回一个负数。




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


转自:http://blog.csdn.net/stefzeus/article/details/6792518

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]

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 );  
}  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值