Changeset 102016 in vbox for trunk/src/libs/xpcom18a4/xpcom/threads/plevent.c
- Timestamp:
- Nov 9, 2023 10:30:35 AM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160116
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/threads/plevent.c
r101990 r102016 74 74 PRCList queue; 75 75 PRMonitor* monitor; 76 PRThread*handlerThread;76 RTTHREAD handlerThread; 77 77 EventQueueType type; 78 78 PRPackedBool processingEvents; … … 111 111 */ 112 112 static PLEventQueue * _pl_CreateEventQueue(const char *name, 113 PRThread *handlerThread,113 RTTHREAD handlerThread, 114 114 EventQueueType qtype) 115 115 { … … 147 147 148 148 PR_IMPLEMENT(PLEventQueue*) 149 PL_CreateEventQueue(const char* name, PRThread*handlerThread)149 PL_CreateEventQueue(const char* name, RTTHREAD handlerThread) 150 150 { 151 151 return( _pl_CreateEventQueue( name, handlerThread, EventQueueIsNative )); … … 153 153 154 154 PR_EXTERN(PLEventQueue *) 155 PL_CreateNativeEventQueue(const char *name, PRThread *handlerThread)155 PL_CreateNativeEventQueue(const char *name, RTTHREAD handlerThread) 156 156 { 157 157 return( _pl_CreateEventQueue( name, handlerThread, EventQueueIsNative )); … … 159 159 160 160 PR_EXTERN(PLEventQueue *) 161 PL_CreateMonitoredEventQueue(const char *name, PRThread *handlerThread)161 PL_CreateMonitoredEventQueue(const char *name, RTTHREAD handlerThread) 162 162 { 163 163 return( _pl_CreateEventQueue( name, handlerThread, EventQueueIsMonitored )); … … 247 247 Assert(event != NULL); 248 248 249 if ( PR_GetCurrentThread() == self->handlerThread) {249 if (RTThreadSelf() == self->handlerThread) { 250 250 /* Handle the case where the thread requesting the event handling 251 251 * is also the thread that's supposed to do the handling. */ … … 590 590 been processed and destroyed or not. */ 591 591 592 Assert(queue->handlerThread == PR_GetCurrentThread());592 Assert(queue->handlerThread == RTThreadSelf()); 593 593 594 594 PR_EnterMonitor(queue->monitor); … … 814 814 PL_IsQueueOnCurrentThread( PLEventQueue *queue ) 815 815 { 816 PRThread *me = PR_GetCurrentThread(); 817 return me == queue->handlerThread; 816 return queue->handlerThread == RTThreadSelf(); 818 817 } 819 818
Note:
See TracChangeset
for help on using the changeset viewer.