quartz: Remove unneeded casts.
This commit is contained in:
parent
3c14ae6699
commit
8caed63edb
@ -113,7 +113,7 @@ static DWORD WINAPI SystemClockAdviseThread(LPVOID lpParam) {
|
|||||||
/** First SingleShots Advice: sorted list */
|
/** First SingleShots Advice: sorted list */
|
||||||
for (it = This->pSingleShotAdvise; NULL != it && (it->rtBaseTime + it->rtIntervalTime) <= curTime; it = it->next) {
|
for (it = This->pSingleShotAdvise; NULL != it && (it->rtBaseTime + it->rtIntervalTime) <= curTime; it = it->next) {
|
||||||
/** send event ... */
|
/** send event ... */
|
||||||
SetEvent((HANDLE) it->hEvent);
|
SetEvent(it->hEvent);
|
||||||
/** ... and Release it */
|
/** ... and Release it */
|
||||||
QUARTZ_RemoveAviseEntryFromQueue(This, it);
|
QUARTZ_RemoveAviseEntryFromQueue(This, it);
|
||||||
CoTaskMemFree(it);
|
CoTaskMemFree(it);
|
||||||
@ -125,7 +125,7 @@ static DWORD WINAPI SystemClockAdviseThread(LPVOID lpParam) {
|
|||||||
if (it->rtBaseTime <= curTime) {
|
if (it->rtBaseTime <= curTime) {
|
||||||
DWORD nPeriods = (DWORD) ((curTime - it->rtBaseTime) / it->rtIntervalTime);
|
DWORD nPeriods = (DWORD) ((curTime - it->rtBaseTime) / it->rtIntervalTime);
|
||||||
/** Release the semaphore ... */
|
/** Release the semaphore ... */
|
||||||
ReleaseSemaphore((HANDLE) it->hEvent, nPeriods, NULL);
|
ReleaseSemaphore(it->hEvent, nPeriods, NULL);
|
||||||
/** ... and refresh time */
|
/** ... and refresh time */
|
||||||
it->rtBaseTime += nPeriods * it->rtIntervalTime;
|
it->rtBaseTime += nPeriods * it->rtIntervalTime;
|
||||||
/*assert( it->rtBaseTime + it->rtIntervalTime < curTime );*/
|
/*assert( it->rtBaseTime + it->rtIntervalTime < curTime );*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user