Fixed HPUX problem: HZ is '#define'd in system header file

This commit is contained in:
Ralph Lange
2003-03-24 08:19:45 +00:00
parent 2f676b3e9a
commit e675fd2178

View File

@@ -641,8 +641,8 @@ void *epicsThreadPrivateGet(epicsThreadPrivateId id)
double epicsThreadSleepQuantum ()
{
double HZ;
HZ = sysconf ( _SC_CLK_TCK );
return 1.0 / HZ;
double hz;
hz = sysconf ( _SC_CLK_TCK );
return 1.0 / hz;
}