*** empty log message ***

svn path=/trunk/boinc/; revision=12157
This commit is contained in:
Charlie Fenton 2007-02-25 11:37:40 +00:00
parent f6b68e7068
commit 5e9817db2c
2 changed files with 5 additions and 3 deletions

View File

@ -2041,3 +2041,7 @@ Bruce 25 Feb 2007
sched_config.C
sched_locality.C
Charlie 25 Feb 2007
Mac: Fix PowerPC bug in new OSXIdleTime() function.
client/
hostinf_unix.C

View File

@ -799,7 +799,6 @@ static double GetOSXIdleTime(void) {
tryNewAPI = false; // CGEventSourceSecondsSinceLastEventType() API is not available on this system
}
printf("kCGEventSourceStateCombinedSessionState() returned idleTime = %lf\n", idleTime);
if (GetSysIdleTime)
return idleTime;
} // if (tryNewAPI)
@ -811,8 +810,7 @@ printf("kCGEventSourceStateCombinedSessionState() returned idleTime = %lf\n", id
// Here we check for that value and correctly return a 0 idle time.
idleTime = CGSSecondsSinceLastInputEvent (-1);
if (idleTime >= 18446744000.0) idleTime = 0.0;
printf("CGSSecondsSinceLastInputEvent() returned idleTime = %lf\n", idleTime);
return (1000.0 * idleTime);
return idleTime;
// return (double)NXIdleTime(gEventHandle); // Very old and very slow API
}
#endif // ! __i386__