src/java.desktop/macosx/native/libawt_lwawt/awt/CFRetainedResource.m

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 

  26 #import <JavaNativeFoundation/JavaNativeFoundation.h>
  27 
  28 #import "sun_lwawt_macosx_CFRetainedResource.h"
  29 
  30 
  31 /*
  32  * Class:     sun_lwawt_macosx_CFRetainedResource
  33  * Method:    nativeCFRelease
  34  * Signature: (JZ)V
  35  */
  36 JNIEXPORT void JNICALL Java_sun_lwawt_macosx_CFRetainedResource_nativeCFRelease
  37 (JNIEnv *env, jclass clazz, jlong ptr, jboolean releaseOnAppKitThread)
  38 {
  39     if (releaseOnAppKitThread) {
  40         [JNFRunLoop performOnMainThreadWaiting:NO withBlock:^(){
  41             CFRelease(jlong_to_ptr(ptr));
  42         }];
  43     } else {
  44 
  45 JNF_COCOA_ENTER(env);
  46 
  47         CFRelease(jlong_to_ptr(ptr));
  48 
  49 JNF_COCOA_EXIT(env);
  50 
  51     }
  52 }


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #import <Cocoa/Cocoa.h>
  27 #import <JavaNativeFoundation/JavaNativeFoundation.h>
  28 
  29 #import "sun_lwawt_macosx_CFRetainedResource.h"
  30 
  31 
  32 /*
  33  * Class:     sun_lwawt_macosx_CFRetainedResource
  34  * Method:    nativeCFRelease
  35  * Signature: (JZ)V
  36  */
  37 JNIEXPORT void JNICALL Java_sun_lwawt_macosx_CFRetainedResource_nativeCFRelease
  38 (JNIEnv *env, jclass clazz, jlong ptr, jboolean releaseOnAppKitThread)
  39 {
  40     if (releaseOnAppKitThread) {
  41         [NSApp postRunnableEvent:^(){
  42             CFRelease(jlong_to_ptr(ptr));
  43         }];
  44     } else {
  45 
  46 JNF_COCOA_ENTER(env);
  47 
  48         CFRelease(jlong_to_ptr(ptr));
  49 
  50 JNF_COCOA_EXIT(env);
  51 
  52     }
  53 }