- Added a multiple histogram memory control module. This required a
tiny change in the countable interface which in turn required updating of header file includes in a lot of files. - Some small fixes to TRICS writing as well.
This commit is contained in:
8
ofac.c
8
ofac.c
@ -41,15 +41,12 @@
|
||||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
#include "fortify.h"
|
||||
#include "sics.h"
|
||||
#include "ifile.h"
|
||||
#include "sicsexit.h"
|
||||
#include "obdes.h"
|
||||
#include "interface.h"
|
||||
#include "passwd.h"
|
||||
#include "conman.h"
|
||||
#include "macro.h"
|
||||
#include "splitter.h"
|
||||
#include "SCinter.h"
|
||||
#include "sicsvar.h"
|
||||
#include "drive.h"
|
||||
#include "motor.h"
|
||||
@ -106,6 +103,7 @@
|
||||
#include "synchronize.h"
|
||||
#include "definealias.h"
|
||||
#include "swmotor.h"
|
||||
#include "hmcontrol.h"
|
||||
/*----------------------- Server options creation -------------------------*/
|
||||
static int IFServerOption(SConnection *pCon, SicsInterp *pSics, void *pData,
|
||||
int argc, char *argv[])
|
||||
@ -284,6 +282,7 @@
|
||||
AddCommand(pInter,"MakeTAS",TASFactory,NULL,NULL);
|
||||
AddCommand(pInter,"MakeSync",MakeSync,NULL,NULL);
|
||||
AddCommand(pInter,"MakeSWMotor",MakeSWMotor,NULL,NULL);
|
||||
AddCommand(pInter,"MakeHMControl",MakeHMControl,NULL,NULL);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void KillIniCommands(SicsInterp *pSics)
|
||||
@ -339,6 +338,7 @@
|
||||
RemoveCommand(pSics,"MakeTAS");
|
||||
RemoveCommand(pSics,"MakeSync");
|
||||
RemoveCommand(pSics,"MakeSWMotor");
|
||||
RemoveCommand(pSics,"MakeHMControl");
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user