- Rewrote the write part of remoteobject
- With transactionID > 10^6, now termination messages are sent by contextdo and tasks - This still has bugs
This commit is contained in:
@ -188,7 +188,13 @@ static int ContextDo(SConnection * pCon, SicsInterp * pSics, void *pData,
|
||||
SCWrite(pCon, "ERROR: no more memory", eError);
|
||||
return 0;
|
||||
}
|
||||
if(comCon->transID > 100000) {
|
||||
SCPrintf(comCon,eLog,"COMSTART %d", comCon->transID);
|
||||
}
|
||||
status = InterpExecute(pSics, comCon, command);
|
||||
if(comCon->transID > 100000) {
|
||||
SCPrintf(comCon,eLog,"COMEND %d", comCon->transID);
|
||||
}
|
||||
if (command != buffer)
|
||||
free(command);
|
||||
SCDeleteConnection(comCon);
|
||||
|
Reference in New Issue
Block a user