many, many changes

This commit is contained in:
Jeff Hill
2000-04-28 02:23:35 +00:00
parent 0e823a62c7
commit eee86b8106
47 changed files with 673 additions and 623 deletions
@@ -3,8 +3,6 @@ TOP=../../../..
include $(TOP)/configure/CONFIG
CXXCMPLR = STRICT
PROD_LIBS := cas ca gdd Com
cas_DIR = $(INSTALL_LIB)
ca_DIR = $(INSTALL_LIB)
@@ -4,8 +4,6 @@ TOP = $(CAS)/../..
include $(TOP)/config/CONFIG_BASE
CXXCMPLR = STRICT
USR_INCLUDES =
USR_LDFLAGS =
-1
View File
@@ -3,7 +3,6 @@
#include "directoryServer.h"
#include "fdManager.h"
#include "bsdSocketResource.h"
#define LOCAL static
+3 -2
View File
@@ -1,5 +1,8 @@
# $Log$
# Revision 1.4 1999/11/18 14:39:46 mrk
# new way to build
#
# Revision 1.3 1999/09/13 14:09:37 mrk
# for 3.14 only a single Makefile
#
@@ -11,8 +14,6 @@ TOP=../../../..
include $(TOP)/configure/CONFIG
CXXCMPLR = STRICT
PROD_LIBS := cas ca gdd Com
SRCS += mon.cc monAdl.cc monNode.cc monServer.cc
+7 -4
View File
@@ -7,6 +7,9 @@
*
* $Id$
* $Log$
* Revision 1.3 1998/12/19 00:04:46 jhill
* renamed createPV() to pvAttach()
*
* Revision 1.2 1997/05/13 14:23:02 jbk
* added comments at top
*
@@ -31,11 +34,11 @@ class monServer;
class monFd : public fdReg
{
public:
monFd(const int fdIn,const fdRegType typ,monServer& s):
fdReg(fdIn,typ),server(s) { }
virtual ~monFd(void);
monFd (const int fdIn,const fdRegType typ,monServer& s) :
fdReg (fdIn,typ),server(s) { }
virtual ~monFd (void);
private:
virtual void callBack(void);
virtual void callBack (void);
monServer& server;
};
-2
View File
@@ -3,8 +3,6 @@ TOP=../../../..
include $(TOP)/configure/CONFIG
CXXCMPLR = STRICT
PROD_LIBS := cas ca gdd Com
cas_DIR = $(INSTALL_LIB)
ca_DIR = $(INSTALL_LIB)
@@ -4,8 +4,6 @@ TOP = $(CAS)/../..
include $(TOP)/config/CONFIG_BASE
CXXCMPLR = STRICT
USR_INCLUDES =
USR_LDFLAGS =
-5
View File
@@ -86,11 +86,6 @@ caStatus exPV::update(gdd &valueIn)
return cas;
}
aitTimeStamp ts = this->currentTime;
this->pValue->setTimeStamp (&ts);
this->pValue->setStat (epicsAlarmNone);
this->pValue->setSevr (epicsSevNone);
//
// post a value change event
//
+7 -1
View File
@@ -52,7 +52,7 @@ aitIndex exVectorPV::maxBound (unsigned dimension) const
void exVectorPV::scan()
{
caStatus status;
double radians;
double radians;
smartGDDPointer pDD;
aitFloat32 *pF, *pFE, *pCF;
float newValue;
@@ -256,6 +256,12 @@ caStatus exVectorPV::updateValue(gdd &valueIn)
if (gdds) {
return S_cas_noConvert;
}
aitTimeStamp ts;
valueIn.getTimeStamp (&ts);
pNewValue->setTimeStamp (&ts);
pNewValue->setStat (valueIn.getStat());
pNewValue->setSevr (valueIn.getSevr());
}
this->pValue = pNewValue;
+3 -2
View File
@@ -1,5 +1,8 @@
# $Log$
# Revision 1.4 1999/11/18 14:39:48 mrk
# new way to build
#
# Revision 1.3 1999/09/13 14:09:40 mrk
# for 3.14 only a single Makefile
#
@@ -11,8 +14,6 @@ TOP=../../../..
include $(TOP)/configure/CONFIG
CXXCMPLR = STRICT
PROD_LIBS := cas ca gdd Com
SRCS += pvServ.cc