79 lines
1.2 KiB
C++
79 lines
1.2 KiB
C++
//
|
|
// $Id$
|
|
// Author: Jeff HIll (LANL)
|
|
//
|
|
// $Log$
|
|
// Revision 1.1 1996/12/06 22:20:22 jhill
|
|
// moved down one level
|
|
//
|
|
// Revision 1.2 1996/09/16 18:22:09 jhill
|
|
// added cvs log entries
|
|
//
|
|
//
|
|
|
|
#include <vxWorks.h>
|
|
#include <taskLib.h>
|
|
|
|
#include "exServer.h"
|
|
|
|
//
|
|
// so we can call this from the vxWorks shell
|
|
//
|
|
extern "C" {
|
|
|
|
exServer *pExampleCAS;
|
|
|
|
//
|
|
// excas ()
|
|
// (vxWorks example server entry point)
|
|
//
|
|
int excas (unsigned debugLevel, unsigned delaySec)
|
|
{
|
|
osiTime begin(osiTime::getCurrent());
|
|
exServer *pCAS;
|
|
|
|
pCAS = new exServer(32u,5u,500u);
|
|
if (!pCAS) {
|
|
return (-1);
|
|
}
|
|
|
|
pCAS->setDebugLevel(debugLevel);
|
|
pExampleCAS = pCAS;
|
|
|
|
if (delaySec==0u) {
|
|
//
|
|
// loop here forever
|
|
//
|
|
while (1) {
|
|
taskDelay(10);
|
|
}
|
|
}
|
|
else {
|
|
osiTime total( ((float)delaySec) );
|
|
osiTime delay(osiTime::getCurrent() - begin);
|
|
//
|
|
// loop here untill the specified execution time
|
|
// expires
|
|
//
|
|
while (delay < total) {
|
|
taskDelay(10);
|
|
delay = osiTime::getCurrent() - begin;
|
|
}
|
|
}
|
|
pCAS->show(debugLevel);
|
|
pExampleCAS = NULL;
|
|
delete pCAS;
|
|
return 0;
|
|
}
|
|
|
|
int excasShow(unsigned level)
|
|
{
|
|
if (pExampleCAS!=NULL) {
|
|
pExampleCAS->show(level);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
} // extern "C"
|
|
|