- Fixed bug with ECB not stopping when no beam

- Fixed synchronisation issues
- Fixed hsitogram memory writing from nxscript
- Started module for writing SICS interfaces in Tcl
- Fixed a bug in scan, which allowed to corrupt files
- Fixed memory problems in napi5
This commit is contained in:
cvs
2003-05-23 15:06:47 +00:00
parent 3231e3e630
commit f3853c20f0
28 changed files with 422 additions and 98 deletions

3
ofac.c
View File

@ -112,6 +112,7 @@
#include "ecb.h"
#include "nxscript.h"
#include "frame.h"
#include "tclintimpl.h"
/*----------------------- Server options creation -------------------------*/
static int IFServerOption(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[])
@ -299,6 +300,7 @@
AddCommand(pInter,"MakeECB",MakeECB,NULL,NULL);
AddCommand(pInter,"MakeNXScript",MakeNXScript,NULL,NULL);
AddCommand(pInter,"MakePSDFrame",MakeFrameFunc,NULL,NULL);
AddCommand(pInter,"MakeTclInt",MakeTclInt,NULL,NULL);
}
/*---------------------------------------------------------------------------*/
static void KillIniCommands(SicsInterp *pSics)
@ -363,6 +365,7 @@
RemoveCommand(pSics,"MakeECB");
RemoveCommand(pSics,"MakeNXScript");
RemoveCommand(pSics,"MakePSDFrame");
RemoveCommand(pSics,"MakeTclInt");
}