JANITORIAL: Remove trailing whitespaces.

Powered by:
git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
This commit is contained in:
Johannes Schickel 2012-09-26 04:17:31 +02:00
parent a6c6c74350
commit 89abab97e3
197 changed files with 630 additions and 630 deletions

View file

@ -717,12 +717,12 @@ void CoroutineScheduler::pulseEvent(uint32 pidEvent) {
EVENT *evt = getEvent(pidEvent);
if (!evt)
return;
// Set the event as signalled and pulsing
evt->signalled = true;
evt->pulsing = true;
// If there's an active process, and it's not the first in the queue, then reschedule all
// If there's an active process, and it's not the first in the queue, then reschedule all
// the other prcoesses in the queue to run again this frame
if (pCurrent && pCurrent != active->pNext)
rescheduleAll();