std/rec: streamline variable names in int64in/int64out

This commit is contained in:
Ralph Lange
2017-05-04 09:27:23 +02:00
parent 2a81e0b338
commit ad0695b119
2 changed files with 8 additions and 8 deletions

View File

@@ -94,9 +94,9 @@ static void monitor(int64inRecord *prec);
static long readValue(int64inRecord *prec);
static long init_record(dbCommon *pcom, int pass)
static long init_record(dbCommon *pcommon, int pass)
{
int64inRecord *prec = (int64inRecord*)pcom;
int64inRecord *prec = (int64inRecord*)pcommon;
struct int64indset *pdset;
long status;
@@ -130,9 +130,9 @@ static long init_record(dbCommon *pcom, int pass)
return(0);
}
static long process(dbCommon *pcom)
static long process(dbCommon *pcommon)
{
int64inRecord *prec = (int64inRecord*)pcom;
int64inRecord *prec = (int64inRecord*)pcommon;
struct int64indset *pdset = (struct int64indset *)(prec->dset);
long status;
unsigned char pact=prec->pact;

View File

@@ -92,9 +92,9 @@ static long writeValue(int64outRecord *prec);
static void convert(int64outRecord *prec, epicsInt64 value);
static long init_record(dbCommon *pcom, int pass)
static long init_record(dbCommon *pcommon, int pass)
{
int64outRecord *prec = (int64outRecord*)pcom;
int64outRecord *prec = (int64outRecord*)pcommon;
struct int64outdset *pdset;
long status=0;
@@ -124,9 +124,9 @@ static long init_record(dbCommon *pcom, int pass)
return(0);
}
static long process(dbCommon *pcom)
static long process(dbCommon *pcommon)
{
int64outRecord *prec = (int64outRecord*)pcom;
int64outRecord *prec = (int64outRecord*)pcommon;
struct int64outdset *pdset = (struct int64outdset *)(prec->dset);
long status=0;
epicsInt64 value;