remove no-op lock/unlock from Lock sub-classes
This commit is contained in:
@ -1062,23 +1062,6 @@ void CAChannelGet::destroy()
|
||||
}
|
||||
|
||||
|
||||
/* --------------- epics::pvData::Lockable --------------- */
|
||||
|
||||
|
||||
void CAChannelGet::lock()
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
|
||||
void CAChannelGet::unlock()
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1408,22 +1391,6 @@ void CAChannelPut::destroy()
|
||||
}
|
||||
|
||||
|
||||
/* --------------- epics::pvData::Lockable --------------- */
|
||||
|
||||
|
||||
void CAChannelPut::lock()
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
|
||||
void CAChannelPut::unlock()
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -152,11 +152,6 @@ public:
|
||||
|
||||
virtual void destroy();
|
||||
|
||||
/* --------------- epics::pvData::Lockable --------------- */
|
||||
|
||||
virtual void lock();
|
||||
virtual void unlock();
|
||||
|
||||
private:
|
||||
|
||||
CAChannelGet(CAChannel::shared_pointer const & _channel,
|
||||
@ -212,11 +207,6 @@ public:
|
||||
|
||||
virtual void destroy();
|
||||
|
||||
/* --------------- epics::pvData::Lockable --------------- */
|
||||
|
||||
virtual void lock();
|
||||
virtual void unlock();
|
||||
|
||||
private:
|
||||
|
||||
CAChannelPut(CAChannel::shared_pointer const & _channel,
|
||||
|
@ -229,16 +229,6 @@ public:
|
||||
m_pipelineSession->cancel();
|
||||
}
|
||||
|
||||
virtual void lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual size_t getFreeElementCount() {
|
||||
Lock guard(m_freeQueueLock);
|
||||
return m_freeQueue.size();
|
||||
|
@ -51,8 +51,6 @@ struct BreakTransport : TransportSender
|
||||
{
|
||||
throw epics::pvAccess::detail::connection_closed_exception("Break");
|
||||
}
|
||||
virtual void lock() {}
|
||||
virtual void unlock() {}
|
||||
};
|
||||
} // namespace
|
||||
|
||||
@ -1427,9 +1425,6 @@ public:
|
||||
control->flush(true);
|
||||
}
|
||||
|
||||
void lock() {}
|
||||
void unlock() {}
|
||||
|
||||
private:
|
||||
PVField::shared_pointer _data;
|
||||
};
|
||||
|
@ -548,14 +548,6 @@ public:
|
||||
|
||||
virtual int getChannelCount() OVERRIDE FINAL;
|
||||
|
||||
virtual void lock() OVERRIDE FINAL {
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void unlock() OVERRIDE FINAL {
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual bool verify(epics::pvData::int32 timeoutMs) OVERRIDE FINAL {
|
||||
|
||||
TransportSender::shared_pointer transportSender =
|
||||
@ -680,14 +672,6 @@ public:
|
||||
|
||||
virtual void changedTransport() OVERRIDE FINAL;
|
||||
|
||||
virtual void lock() OVERRIDE FINAL {
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void unlock() OVERRIDE FINAL {
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void aliveNotification() OVERRIDE FINAL;
|
||||
|
||||
virtual void send(epics::pvData::ByteBuffer* buffer,
|
||||
|
@ -539,14 +539,6 @@ public:
|
||||
{
|
||||
BaseRequestImpl::lastRequest();
|
||||
}
|
||||
|
||||
virtual void lock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void unlock() {
|
||||
// noop
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -1986,10 +1978,6 @@ public:
|
||||
return m_ioid;
|
||||
}
|
||||
|
||||
virtual void lock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void send(ByteBuffer* buffer, TransportSendControl* control) {
|
||||
control->startMessage((int8)17, 8);
|
||||
buffer->putInt(m_channel->getServerChannelID());
|
||||
@ -2019,10 +2007,6 @@ public:
|
||||
// TODO notify?
|
||||
}
|
||||
|
||||
virtual void unlock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void destroy()
|
||||
{
|
||||
{
|
||||
@ -2339,16 +2323,6 @@ public:
|
||||
control->flush(true);
|
||||
}
|
||||
|
||||
virtual void lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
Status start() {
|
||||
Lock guard(m_mutex);
|
||||
while (!m_monitorQueue.empty())
|
||||
@ -2703,16 +2677,6 @@ public:
|
||||
m_monitorStrategy->release(monitorElement);
|
||||
}
|
||||
|
||||
virtual void lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -4100,11 +4064,6 @@ private:
|
||||
}
|
||||
|
||||
|
||||
virtual void lock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
|
||||
virtual void send(ByteBuffer* buffer, TransportSendControl* control) {
|
||||
m_channelMutex.lock();
|
||||
bool issueCreateMessage = m_issueCreateMessage;
|
||||
@ -4139,10 +4098,6 @@ private:
|
||||
}
|
||||
}
|
||||
|
||||
virtual void unlock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Disconnects (destroys) all channels pending IO.
|
||||
|
@ -168,16 +168,6 @@ public:
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
virtual void unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
@ -100,16 +100,6 @@ void BaseChannelRequesterMessageTransportSender::send(ByteBuffer* buffer, Transp
|
||||
epics::pvData::SerializeHelper::serializeString(_message, buffer, control);
|
||||
}
|
||||
|
||||
void BaseChannelRequesterMessageTransportSender::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void BaseChannelRequesterMessageTransportSender::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
BaseChannelRequesterFailureMessageTransportSender::BaseChannelRequesterFailureMessageTransportSender(const int8 command,
|
||||
Transport::shared_pointer const & transport, const pvAccessID ioid, const int8 qos, const Status& status) :
|
||||
_command(command),
|
||||
@ -128,16 +118,6 @@ void BaseChannelRequesterFailureMessageTransportSender::send(ByteBuffer* buffer,
|
||||
_status.serialize(buffer, control);
|
||||
}
|
||||
|
||||
void BaseChannelRequesterFailureMessageTransportSender::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void BaseChannelRequesterFailureMessageTransportSender::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -49,16 +49,6 @@ BeaconEmitter::~BeaconEmitter()
|
||||
// destroy();
|
||||
}
|
||||
|
||||
void BeaconEmitter::lock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void BeaconEmitter::unlock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void BeaconEmitter::send(ByteBuffer* buffer, TransportSendControl* control)
|
||||
{
|
||||
// get server status
|
||||
|
@ -65,8 +65,6 @@ class BaseChannelRequesterMessageTransportSender : public TransportSender
|
||||
public:
|
||||
BaseChannelRequesterMessageTransportSender(const pvAccessID _ioid, const std::string message,const epics::pvData::MessageType messageType);
|
||||
void send(epics::pvData::ByteBuffer* buffer, TransportSendControl* control);
|
||||
void lock();
|
||||
void unlock();
|
||||
private:
|
||||
const pvAccessID _ioid;
|
||||
const std::string _message;
|
||||
@ -78,8 +76,6 @@ class BaseChannelRequesterFailureMessageTransportSender : public TransportSender
|
||||
public:
|
||||
BaseChannelRequesterFailureMessageTransportSender(const epics::pvData::int8 command, Transport::shared_pointer const & transport, const pvAccessID ioid, const epics::pvData::int8 qos, const epics::pvData::Status& status);
|
||||
void send(epics::pvData::ByteBuffer* buffer, TransportSendControl* control);
|
||||
void lock();
|
||||
void unlock();
|
||||
|
||||
private:
|
||||
const epics::pvData::int8 _command;
|
||||
|
@ -59,9 +59,6 @@ public:
|
||||
|
||||
virtual ~BeaconEmitter();
|
||||
|
||||
void lock();
|
||||
void unlock();
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer, TransportSendControl* control);
|
||||
|
||||
void timerStopped();
|
||||
|
@ -125,12 +125,6 @@ public:
|
||||
// TODO content
|
||||
}
|
||||
|
||||
virtual void lock() {
|
||||
}
|
||||
|
||||
virtual void unlock() {
|
||||
}
|
||||
|
||||
private:
|
||||
osiSockAddr _echoFrom;
|
||||
};
|
||||
@ -174,8 +168,6 @@ public:
|
||||
epics::pvData::int32 cid, osiSockAddr const & sendTo, bool responseRequired, bool serverSearch);
|
||||
void channelFindResult(const epics::pvData::Status& status, ChannelFind::shared_pointer const & channelFind, bool wasFound);
|
||||
|
||||
void lock();
|
||||
void unlock();
|
||||
void send(epics::pvData::ByteBuffer* buffer, TransportSendControl* control);
|
||||
|
||||
void callback();
|
||||
@ -242,8 +234,6 @@ public:
|
||||
void channelStateChange(Channel::shared_pointer const & c, const Channel::ConnectionState isConnected);
|
||||
std::string getRequesterName();
|
||||
void message(std::string const & message, epics::pvData::MessageType messageType);
|
||||
void lock();
|
||||
void unlock();
|
||||
void send(epics::pvData::ByteBuffer* buffer, TransportSendControl* control);
|
||||
private:
|
||||
ServerChannel::weak_pointer _serverChannel;
|
||||
@ -286,14 +276,6 @@ public:
|
||||
buffer->putInt(_cid);
|
||||
}
|
||||
|
||||
void lock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
void unlock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
private:
|
||||
pvAccessID _cid;
|
||||
pvAccessID _sid;
|
||||
@ -345,8 +327,6 @@ public:
|
||||
|
||||
ChannelGet::shared_pointer getChannelGet();
|
||||
|
||||
void lock();
|
||||
void unlock();
|
||||
void send(epics::pvData::ByteBuffer* buffer, TransportSendControl* control);
|
||||
private:
|
||||
ChannelGet::shared_pointer _channelGet;
|
||||
@ -396,8 +376,6 @@ public:
|
||||
void channelPutConnect(const epics::pvData::Status& status, ChannelPut::shared_pointer const & channelPut, epics::pvData::Structure::const_shared_pointer const & structure);
|
||||
void putDone(const epics::pvData::Status& status, ChannelPut::shared_pointer const & channelPut);
|
||||
void getDone(const epics::pvData::Status& status, ChannelPut::shared_pointer const & channelPut, epics::pvData::PVStructure::shared_pointer const & pvStructure, epics::pvData::BitSet::shared_pointer const & bitSet);
|
||||
void lock();
|
||||
void unlock();
|
||||
void destroy();
|
||||
|
||||
ChannelPut::shared_pointer getChannelPut();
|
||||
@ -460,8 +438,6 @@ public:
|
||||
void putGetDone(const epics::pvData::Status& status, ChannelPutGet::shared_pointer const & channelPutGet,
|
||||
epics::pvData::PVStructure::shared_pointer const & pvStructure,
|
||||
epics::pvData::BitSet::shared_pointer const & bitSet);
|
||||
void lock();
|
||||
void unlock();
|
||||
void destroy();
|
||||
|
||||
ChannelPutGet::shared_pointer getChannelPutGet();
|
||||
@ -521,8 +497,6 @@ public:
|
||||
void monitorConnect(const epics::pvData::Status& status, Monitor::shared_pointer const & monitor, epics::pvData::StructureConstPtr const & structure);
|
||||
void unlisten(Monitor::shared_pointer const & monitor);
|
||||
void monitorEvent(Monitor::shared_pointer const & monitor);
|
||||
void lock();
|
||||
void unlock();
|
||||
void destroy();
|
||||
|
||||
Monitor::shared_pointer getChannelMonitor();
|
||||
@ -579,8 +553,6 @@ public:
|
||||
void setLengthDone(const epics::pvData::Status& status, ChannelArray::shared_pointer const & channelArray);
|
||||
void getLengthDone(const epics::pvData::Status& status, ChannelArray::shared_pointer const & channelArray,
|
||||
std::size_t length);
|
||||
void lock();
|
||||
void unlock();
|
||||
void destroy();
|
||||
|
||||
ChannelArray::shared_pointer getChannelArray();
|
||||
@ -677,8 +649,6 @@ public:
|
||||
|
||||
void channelProcessConnect(const epics::pvData::Status& status, ChannelProcess::shared_pointer const & channelProcess);
|
||||
void processDone(const epics::pvData::Status& status, ChannelProcess::shared_pointer const & channelProcess);
|
||||
void lock();
|
||||
void unlock();
|
||||
void destroy();
|
||||
|
||||
ChannelProcess::shared_pointer getChannelProcess();
|
||||
@ -724,8 +694,6 @@ public:
|
||||
|
||||
virtual ~ServerGetFieldRequesterImpl() {}
|
||||
void getDone(const epics::pvData::Status& status, epics::pvData::FieldConstPtr const & field);
|
||||
void lock();
|
||||
void unlock();
|
||||
void destroy();
|
||||
void send(epics::pvData::ByteBuffer* buffer, TransportSendControl* control);
|
||||
private:
|
||||
@ -748,14 +716,6 @@ public:
|
||||
_status.serialize(buffer, control);
|
||||
}
|
||||
|
||||
void lock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
void unlock() {
|
||||
// noop
|
||||
}
|
||||
|
||||
private:
|
||||
const pvAccessID _ioid;
|
||||
const epics::pvData::Status _status;
|
||||
@ -802,8 +762,6 @@ public:
|
||||
|
||||
void channelRPCConnect(const epics::pvData::Status& status, ChannelRPC::shared_pointer const & channelRPC);
|
||||
void requestDone(const epics::pvData::Status& status, ChannelRPC::shared_pointer const & channelRPC, epics::pvData::PVStructure::shared_pointer const & pvResponse);
|
||||
void lock();
|
||||
void unlock();
|
||||
void destroy();
|
||||
/**
|
||||
* @return the channelRPC
|
||||
|
@ -426,16 +426,6 @@ void ServerChannelFindRequesterImpl::channelFindResult(const Status& /*status*/,
|
||||
}
|
||||
}
|
||||
|
||||
void ServerChannelFindRequesterImpl::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelFindRequesterImpl::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelFindRequesterImpl::send(ByteBuffer* buffer, TransportSendControl* control)
|
||||
{
|
||||
control->startMessage((int8)4, 12+4+16+2);
|
||||
@ -906,16 +896,6 @@ void ServerChannelRequesterImpl::message(std::string const & message, MessageTyp
|
||||
LOG(logLevelDebug, "[%s] %s", getMessageTypeName(messageType).c_str(), message.c_str());
|
||||
}
|
||||
|
||||
void ServerChannelRequesterImpl::lock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerChannelRequesterImpl::unlock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerChannelRequesterImpl::send(ByteBuffer* buffer, TransportSendControl* control)
|
||||
{
|
||||
ServerChannel::shared_pointer serverChannel;
|
||||
@ -1201,16 +1181,6 @@ ChannelGet::shared_pointer ServerChannelGetRequesterImpl::getChannelGet()
|
||||
return _channelGet;
|
||||
}
|
||||
|
||||
void ServerChannelGetRequesterImpl::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelGetRequesterImpl::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
// TODO get rid of all these mutex-es
|
||||
void ServerChannelGetRequesterImpl::send(ByteBuffer* buffer, TransportSendControl* control)
|
||||
{
|
||||
@ -1452,16 +1422,6 @@ void ServerChannelPutRequesterImpl::getDone(const Status& status, ChannelPut::sh
|
||||
_transport->enqueueSendRequest(thisSender);
|
||||
}
|
||||
|
||||
void ServerChannelPutRequesterImpl::lock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerChannelPutRequesterImpl::unlock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerChannelPutRequesterImpl::destroy()
|
||||
{
|
||||
// keep a reference to ourselves as the owner
|
||||
@ -1772,16 +1732,6 @@ void ServerChannelPutGetRequesterImpl::putGetDone(const Status& status, ChannelP
|
||||
_transport->enqueueSendRequest(thisSender);
|
||||
}
|
||||
|
||||
void ServerChannelPutGetRequesterImpl::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelPutGetRequesterImpl::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelPutGetRequesterImpl::destroy()
|
||||
{
|
||||
// keep a reference to ourselves as the owner
|
||||
@ -2075,16 +2025,6 @@ void ServerMonitorRequesterImpl::monitorEvent(Monitor::shared_pointer const & /*
|
||||
_transport->enqueueSendRequest(thisSender);
|
||||
}
|
||||
|
||||
void ServerMonitorRequesterImpl::lock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerMonitorRequesterImpl::unlock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerMonitorRequesterImpl::destroy()
|
||||
{
|
||||
// keep a reference to ourselves as the owner
|
||||
@ -2440,16 +2380,6 @@ void ServerChannelArrayRequesterImpl::getLengthDone(const Status& status, Channe
|
||||
_transport->enqueueSendRequest(thisSender);
|
||||
}
|
||||
|
||||
void ServerChannelArrayRequesterImpl::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelArrayRequesterImpl::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelArrayRequesterImpl::destroy()
|
||||
{
|
||||
// keep a reference to ourselves as the owner
|
||||
@ -2749,16 +2679,6 @@ void ServerChannelProcessRequesterImpl::processDone(const Status& status, Channe
|
||||
_transport->enqueueSendRequest(thisSender);
|
||||
}
|
||||
|
||||
void ServerChannelProcessRequesterImpl::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelProcessRequesterImpl::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelProcessRequesterImpl::destroy()
|
||||
{
|
||||
// keep a reference to ourselves as the owner
|
||||
@ -2874,16 +2794,6 @@ void ServerGetFieldRequesterImpl::getDone(const Status& status, FieldConstPtr co
|
||||
_transport->enqueueSendRequest(thisSender);
|
||||
}
|
||||
|
||||
void ServerGetFieldRequesterImpl::lock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerGetFieldRequesterImpl::unlock()
|
||||
{
|
||||
//noop
|
||||
}
|
||||
|
||||
void ServerGetFieldRequesterImpl::destroy()
|
||||
{
|
||||
}
|
||||
@ -3041,16 +2951,6 @@ void ServerChannelRPCRequesterImpl::requestDone(const Status& status, ChannelRPC
|
||||
_transport->enqueueSendRequest(thisSender);
|
||||
}
|
||||
|
||||
void ServerChannelRPCRequesterImpl::lock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelRPCRequesterImpl::unlock()
|
||||
{
|
||||
// noop
|
||||
}
|
||||
|
||||
void ServerChannelRPCRequesterImpl::destroy()
|
||||
{
|
||||
// keep a reference to ourselves as the owner
|
||||
|
@ -28,8 +28,6 @@ struct sender_break : public connection_closed_exception
|
||||
};
|
||||
|
||||
struct TransportSenderDisconnect: public TransportSender {
|
||||
void unlock() {}
|
||||
void lock() {}
|
||||
void send(ByteBuffer *buffer, TransportSendControl *control)
|
||||
{
|
||||
control->flush(true);
|
||||
@ -40,8 +38,6 @@ struct TransportSenderDisconnect: public TransportSender {
|
||||
struct TransportSenderSignal: public TransportSender {
|
||||
Event *evt;
|
||||
TransportSenderSignal(Event& evt) :evt(&evt) {}
|
||||
void unlock() {}
|
||||
void lock() {}
|
||||
void send(ByteBuffer *buffer, TransportSendControl *control)
|
||||
{
|
||||
evt->signal();
|
||||
@ -2289,12 +2285,6 @@ private:
|
||||
TransportSenderForTestEnqueueSendRequest(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2314,12 +2304,6 @@ private:
|
||||
TransportSender2ForTestEnqueueSendRequest(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2403,12 +2387,6 @@ private:
|
||||
TransportSenderForTestEnqueueSendDirectRequest(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2428,12 +2406,6 @@ private:
|
||||
TransportSender2ForTestEnqueueSendDirectRequest(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2612,12 +2584,6 @@ private:
|
||||
TestCodec & codec, std::size_t bytesToSend):
|
||||
_codec(codec), _bytesToSent(bytesToSend) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2714,12 +2680,6 @@ private:
|
||||
TransportSenderForTestSendException(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2777,12 +2737,6 @@ private:
|
||||
TestCodec & codec, std::size_t bytesToSend):
|
||||
_codec(codec), _bytesToSent(bytesToSend) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2929,12 +2883,6 @@ private:
|
||||
TransportSenderForTestClearSendQueue(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -2954,12 +2902,6 @@ private:
|
||||
TransportSender2ForTestClearSendQueue(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -3065,12 +3007,6 @@ private:
|
||||
TransportSenderForTestEnqueueSendRequestExceptionThrown(
|
||||
TestCodec & /*codec*/) { /*: _codec(codec)*/ }
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -3095,12 +3031,6 @@ private:
|
||||
TransportSender2ForTestEnqueueSendRequestExceptionThrown(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
@ -3171,12 +3101,6 @@ private:
|
||||
TransportSenderForTestBlockingProcessQueueTest(
|
||||
TestCodec & codec): _codec(codec) {}
|
||||
|
||||
void unlock() {
|
||||
}
|
||||
|
||||
void lock() {
|
||||
}
|
||||
|
||||
void send(epics::pvData::ByteBuffer* buffer,
|
||||
TransportSendControl* control)
|
||||
{
|
||||
|
Reference in New Issue
Block a user