midp_eventqueue_md.c

来自「This is a resource based on j2me embedde」· C语言 代码 · 共 108 行

C
108
字号
/* *    * * Copyright  1990-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation. *  * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is * included at /legal/license.txt). *  * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA *  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */#include <kni.h>#include <midpport_eventqueue.h>#include <windows.h>#include <midpMalloc.h>/* thread safety */static int specialId;/** * @file * * Platform specific system services, such as event handling. *//*========================================================================= * Event handling functions *=======================================================================*//** Create the event queue lock. */voidmidp_createEventQueueLock(void) {    /*     * The Master mode needs a lock since all events put in asynchronously.     * But slave mode may not if events can be put in the system GUI event     * system.     */    HANDLE *mutex;    specialId = TlsAlloc();    mutex = midpMalloc(sizeof(HANDLE));    if (mutex == NULL) {        return;    }    TlsSetValue(specialId, mutex);    *mutex = CreateMutex(0, KNI_FALSE, "eventQueueMutex");}/** Destroy the event queue lock. */voidmidp_destroyEventQueueLock(void) {    /* Clean up thread local data */    void* ptr = (void*) TlsGetValue(specialId);    if (ptr != NULL) {        /* Must free TLS data before freeing the TLS (special) ID */        midpFree(ptr);        TlsFree(specialId);    }}/** Wait to get the event queue lock and then lock it. */voidmidp_waitAndLockEventQueue(void) {    HANDLE *mutex = (HANDLE*) TlsGetValue(specialId);    WaitForSingleObject(*mutex, INFINITE);}/** Unlock the event queue. */voidmidp_unlockEventQueue(void) {    HANDLE *mutex = (HANDLE*) TlsGetValue(specialId);    ReleaseMutex(*mutex);}/** * Enqueues an event to be processed by the Java event thread. * This can be used by any native thread. If the caller is running * in the VM thread it can call StoreMIDPEventInVmThread instead to cut down on * event latency. * * @param event The event to enqueue. * * @param isolateId ID of an Isolate or 0 for SMV mode */voidStoreMIDPEvent(MidpEvent event, int isolateId) {    /* IMPL_NOTE: SHOULD post the event in a (WM_USER + 4) WM_MIDP_EVENT message */}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?