- 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:
2
conman.c
2
conman.c
@ -1744,7 +1744,7 @@ int SCInvoke(SConnection * self, SicsInterp * pInter, char *pCommand)
|
||||
memset(pBueffel, 0, 80);
|
||||
stptok(trim(pCommand), pBueffel, 79, " ");
|
||||
self->iCmdCtr++;
|
||||
if (999999 < self->iCmdCtr) {
|
||||
if (self->iCmdCtr > 99998) {
|
||||
self->iCmdCtr = 0;
|
||||
}
|
||||
self->transID = self->iCmdCtr;
|
||||
|
Reference in New Issue
Block a user