javacommons/comms/inc/commsendpoint.h
changeset 87 1627c337e51e
parent 21 2a9601315dfc
equal deleted inserted replaced
80:d6dafc5d983f 87:1627c337e51e
   325     */
   325     */
   326     OS_IMPORT virtual int attachToVm(JNIEnv* aEnv);
   326     OS_IMPORT virtual int attachToVm(JNIEnv* aEnv);
   327 
   327 
   328     /**
   328     /**
   329     * Detach internal message loop thread from JVM.
   329     * Detach internal message loop thread from JVM.
   330     * @param -
   330     * @param[in] aEnv JNI context
   331     * @see attachToVm
   331     * @see attachToVm
   332     * @return 0 in success, errno in failure
   332     * @return 0 in success, errno in failure
   333     */
   333     */
   334     OS_IMPORT virtual int detachFromVm();
   334     OS_IMPORT virtual int detachFromVm(JNIEnv* aEnv);
   335 
   335 
   336 protected:
   336 protected:
   337     JavaVM* mVm;
   337     JavaVM* mVm;
   338     JNIEnv* mJNIEnv;
   338     JNIEnv* mJNIEnv;
   339 
   339