Changeset 22829 in vbox for trunk/src/libs/xpcom18a4/python
- Timestamp:
- Sep 8, 2009 9:24:56 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 52056
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/src/module/_xpcom.cpp
r22724 r22829 493 493 494 494 #ifdef VBOX 495 #define USE_EVENTQUEUE 1495 //#define USE_EVENTQUEUE 1 496 496 497 497 # ifdef USE_EVENTQUEUE … … 639 639 640 640 # ifdef USE_EVENTQUEUE 641 int rc = com::EventQueue::processThreadEventQueue(aTimeout < 0 ? RT_INDEFINITE_WAIT : (uint32_t)aTimeout); 641 int rc; 642 643 Py_BEGIN_ALLOW_THREADS; 644 rc = com::EventQueue::processThreadEventQueue(aTimeout < 0 ? RT_INDEFINITE_WAIT : (uint32_t)aTimeout); 645 Py_END_ALLOW_THREADS; 646 642 647 if (RT_SUCCESS(rc)) 643 648 return PyInt_FromLong(0);
Note:
See TracChangeset
for help on using the changeset viewer.