VirtualBox

Ignore:
Timestamp:
Nov 9, 2023 10:30:35 AM (17 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
160116
Message:

libs/xpcom/xpcom: Convert nsEventQueueService,nsEventQueue and plevent from PRThread/nsIThread to IPRT's thread API, bugref:10545

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/xpcom/threads/plevent.c

    r101990 r102016  
    7474    PRCList             queue;
    7575    PRMonitor*          monitor;
    76     PRThread*           handlerThread;
     76    RTTHREAD            handlerThread;
    7777    EventQueueType      type;
    7878    PRPackedBool        processingEvents;
     
    111111*/
    112112static PLEventQueue * _pl_CreateEventQueue(const char *name,
    113                                            PRThread *handlerThread,
     113                                           RTTHREAD handlerThread,
    114114                                           EventQueueType  qtype)
    115115{
     
    147147
    148148PR_IMPLEMENT(PLEventQueue*)
    149 PL_CreateEventQueue(const char* name, PRThread* handlerThread)
     149PL_CreateEventQueue(const char* name, RTTHREAD handlerThread)
    150150{
    151151    return( _pl_CreateEventQueue( name, handlerThread, EventQueueIsNative ));
     
    153153
    154154PR_EXTERN(PLEventQueue *)
    155 PL_CreateNativeEventQueue(const char *name, PRThread *handlerThread)
     155PL_CreateNativeEventQueue(const char *name, RTTHREAD handlerThread)
    156156{
    157157    return( _pl_CreateEventQueue( name, handlerThread, EventQueueIsNative ));
     
    159159
    160160PR_EXTERN(PLEventQueue *)
    161 PL_CreateMonitoredEventQueue(const char *name, PRThread *handlerThread)
     161PL_CreateMonitoredEventQueue(const char *name, RTTHREAD handlerThread)
    162162{
    163163    return( _pl_CreateEventQueue( name, handlerThread, EventQueueIsMonitored ));
     
    247247    Assert(event != NULL);
    248248
    249     if (PR_GetCurrentThread() == self->handlerThread) {
     249    if (RTThreadSelf() == self->handlerThread) {
    250250        /* Handle the case where the thread requesting the event handling
    251251         * is also the thread that's supposed to do the handling. */
     
    590590       been processed and destroyed or not. */
    591591
    592     Assert(queue->handlerThread == PR_GetCurrentThread());
     592    Assert(queue->handlerThread == RTThreadSelf());
    593593
    594594    PR_EnterMonitor(queue->monitor);
     
    814814PL_IsQueueOnCurrentThread( PLEventQueue *queue )
    815815{
    816     PRThread *me = PR_GetCurrentThread();
    817     return me == queue->handlerThread;
     816    return queue->handlerThread == RTThreadSelf();
    818817}
    819818
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette