- Fixed a singlex death when there was no lambda. Was a problem during
shutdown when nothing works as it should - Made an attempt to have all error message printed on demand - Added a tricsswap feature to sinqhttp which swaps the data right for SICS - Edited speed for phytron driver - First attack on adding a misalignment calculation to tasub - Added a test protocol for scriptcontext which can be configured. SKIPPED: psi/sinqhttp.c
This commit is contained in:
24
conman.c
24
conman.c
@ -5,7 +5,6 @@
|
||||
below.
|
||||
|
||||
|
||||
|
||||
Mark Koennecke, October 1996
|
||||
|
||||
SMInvoke added. Mark Koennecke, April 1997
|
||||
@ -757,7 +756,30 @@ int SCNormalWrite(SConnection * self, char *buffer, int iOut)
|
||||
|
||||
return 1;
|
||||
}
|
||||
/*--------------------------------------------------------------------------*/
|
||||
int SCAllWrite(SConnection * self, char *buffer, int iOut)
|
||||
{
|
||||
int i, iPtr, iRet;
|
||||
|
||||
if (!VerifyConnection(self)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (buffer[0] == '\0' && iOut >= eStart && iOut <= eEvent) {
|
||||
return 1; /* do not write empty line */
|
||||
}
|
||||
|
||||
/* log it for any case */
|
||||
SICSLogWrite(buffer, iOut);
|
||||
|
||||
testAndWriteCommandLog(self, buffer, iOut);
|
||||
|
||||
testAndStoreInTcl(self, buffer, iOut);
|
||||
|
||||
doSockWrite(self, buffer);
|
||||
|
||||
return 1;
|
||||
}
|
||||
/*--------------------------------------------------------------------------*/
|
||||
int SCACTWrite(SConnection * self, char *buffer, int iOut)
|
||||
{
|
||||
|
Reference in New Issue
Block a user