This commit is contained in:
Michael Davidsaver
2015-09-08 17:06:31 -04:00
parent 2f27b07120
commit 56d3b9b4e0
13 changed files with 1012 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <iocsh.h>
#define epicsExportSharedSymbols
#include "pva2pva.h"
int main(int argc, char *argv[])
{
registerGWClientIocsh();
registerGWServerIocsh();
if(argc>1)
iocsh(argv[1]);
int ret = iocsh(NULL);
gwServerShutdown();
gwClientShutdown();
return ret;
}