osiTime=>epicsTime

This commit is contained in:
Marty Kraimer
2001-01-31 13:34:02 +00:00
parent 865ab30162
commit 6a52eff141
93 changed files with 530 additions and 1888 deletions

View File

@@ -72,8 +72,8 @@ bool CASG::verify () const
int CASG::block ( double timeout )
{
unsigned long initialSeqNo = this->seqNo;
osiTime cur_time;
osiTime beg_time;
epicsTime cur_time;
epicsTime beg_time;
double delay;
double remaining;
int status;
@@ -92,7 +92,7 @@ int CASG::block ( double timeout )
epicsThreadPrivateSet (cacRecursionLock, &cacRecursionLock);
cur_time = osiTime::getCurrent ();
cur_time = epicsTime::getCurrent ();
this->client.flush ();
@@ -133,7 +133,7 @@ int CASG::block ( double timeout )
/*
* force a time update
*/
cur_time = osiTime::getCurrent ();
cur_time = epicsTime::getCurrent ();
delay = cur_time - beg_time;
}