Files
epics-base/src/cas/generic/casCtx.cc
1997-06-30 22:54:34 +00:00

20 lines
373 B
C++

#include "server.h"
//
// casCtx::show()
//
void casCtx::show (unsigned level) const
{
printf ("casCtx at %p\n", this);
if (level >= 3u) {
printf ("\tpMsg = %p\n", &this->msg);
printf ("\tpData = %p\n", pData);
printf ("\tpCAS = %p\n", pCAS);
printf ("\tpClient = %p\n", pClient);
printf ("\tpChannel = %p\n", pChannel);
printf ("\tpPV = %p\n", pPV);
}
}