PSI sics-cvs-psi-2008-10-02

This commit is contained in:
2008-10-02 00:00:00 +00:00
committed by Douglas Clowes
parent 6e926b813f
commit 4baffb9b7a
304 changed files with 77527 additions and 3612 deletions

View File

@@ -163,6 +163,7 @@
static int CheckVal(void *pSelf, SConnection *pCon )
{
pSelVar self = NULL;
int status;
self = (pSelVar)pSelf;
assert(self);
@@ -173,7 +174,12 @@
self->pCon = pCon;
InvokeCallBack(self->pCall, WLCHANGE, self);
return MonoCheck(self->pSel,pCon);
status = MonoCheck(self->pSel,pCon);
if(status != HWBusy)
{
InvokeCallBack(self->pCall, WLCHANGE, self);
}
return status;
}
/*------------------------------------------------------------------------*/
static int HaltSelVar(void *pSelf)