- Modified collective drive operations to run motors in individual tasks
- Added a processnode methos to scriptcontext. processnode waits for the scriptchain of a node to finish. - Fixed a bug in sicsget - Made histmemsec dim and rank manager privilege. To allow chnage at runtime. Is required for SANS - Fixed some issues with multicountersec, mostly relating to passing things through in a sensible way. - Updated motorsec.c to work with a client based driver SKIPPED: psi/polterwrite.c psi/tabledrive.c psi/tabledrive.h
This commit is contained in:
@ -950,7 +950,11 @@ static int StandardScriptInvoke(pScanData self, char *function)
|
||||
if (command == NULL) {
|
||||
return 0;
|
||||
}
|
||||
status = InterpExecute(self->pSics, self->pCon, GetCharArray(command));
|
||||
if(self->pCon != NULL){
|
||||
status = InterpExecute(pServ->pSics, self->pCon, GetCharArray(command));
|
||||
} else {
|
||||
status = InterpExecute(pServ->pSics, pServ->dummyCon, GetCharArray(command));
|
||||
}
|
||||
DeleteDynString(command);
|
||||
if (status != 1) {
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user