Changeset 3296 in vbox for trunk/src/VBox/Frontends/VBoxSDL
- Timestamp:
- Jun 26, 2007 2:33:24 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22399
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Helper.cpp
r3289 r3296 42 42 static bool volatile g_fTerminateXPCOMQueueThread = false; 43 43 44 /** How many XPCOM user events are on air. Only allow one pending event to prevent45 * an overflow of the SDL event queue. */44 /** How many XPCOM user events are on air. Only allow one pending event to 45 * prevent an overflow of the SDL event queue. */ 46 46 static volatile int32_t g_s32XPCOMEventsPending; 47 47 … … 72 72 FD_SET(eqFD, &fdset); 73 73 int n = select(eqFD + 1, &fdset, NULL, NULL, NULL); 74 75 74 76 75 /* are there any events to process? */ … … 139 138 } 140 139 141 /* 142 * Notify the XPCOM t read that we consumed an XPCOM event.140 /** 141 * Notify the XPCOM thread that we consumed an XPCOM event. 143 142 */ 144 143 void consumedXPCOMUserEvent(void)
Note:
See TracChangeset
for help on using the changeset viewer.