- Implemented tcl: prefix which allows to execute a command in Tcl directly
- Fixed a stack overrun bug in macro.c - Fixed a killing bug in devser.c - Added node writing with offset to nxscript.c - Wrote a simulation driver for second generation HM's - Readded devexec commands to SICS - Readded Hipadaba initialisation to SICS - Fixed a bug in sinqhttprot.c which is triggered when a reconnect happens during a node based download of data. SKIPPED: psi/sinqhttpprot.c
This commit is contained in:
6
ofac.c
6
ofac.c
@ -15,7 +15,9 @@
|
||||
#include "exeman.h"
|
||||
#include "statusfile.h"
|
||||
#include "site.h"
|
||||
#include "sicshipadaba.h"
|
||||
|
||||
extern void DevExecInit(void); /* devexec.c */
|
||||
/*--------------------------------------------------------------------------*/
|
||||
static void InitGeneral(void)
|
||||
{
|
||||
@ -107,7 +109,6 @@ static void InitIniCommands(SicsInterp * pInter)
|
||||
SCMD("allowexec", AllowExec);
|
||||
SCMD("AntiCollisionInstall", AntiColliderFactory);
|
||||
SCMD("ChopperAdapter", CHAdapterFactory);
|
||||
SCMD("InstallHdb", InstallSICSHipadaba);
|
||||
SCMD("InstallSinfox", InstallSinfox);
|
||||
SCMD("MakeAsyncProtocol", AsyncProtocolFactory);
|
||||
SCMD("MakeAsyncQueue", AsyncQueueFactory);
|
||||
@ -195,6 +196,7 @@ int InitObjectCommands(pServer pServ, char *file)
|
||||
pExe = CreateExeList(pServ->pTasker);
|
||||
pServ->pExecutor = pExe;
|
||||
pEnv = CreateEnvMon();
|
||||
DevExecInit();
|
||||
|
||||
assert(pExe);
|
||||
assert(pEnv);
|
||||
@ -209,7 +211,7 @@ int InitObjectCommands(pServer pServ, char *file)
|
||||
}
|
||||
|
||||
InstallBckRestore(pCon, pSics);
|
||||
|
||||
InstallSICSHipadaba(pCon, pSics,NULL,0,NULL);
|
||||
|
||||
/* evaluate the file */
|
||||
snprintf(pBueffel,sizeof(pBueffel)-1, "fileeval %s", file);
|
||||
|
Reference in New Issue
Block a user