| 70 | //-------------------------------------------------------------------------- |
| 71 | |
| 72 | void AsyncUpdateThread::run( void* ) |
| 73 | { |
| 74 | _setName( getName() ); |
| 75 | |
| 76 | while( !checkForStop() ) |
| 77 | { |
| 78 | _waitForEventAndReset(); |
| 79 | |
| 80 | if( !checkForStop() ) |
| 81 | mUpdateList->process(); |
| 82 | } |
| 83 | } |