keep it building

This commit is contained in:
Douglas Clowes
2012-11-29 10:37:50 +11:00
parent e0c861c0ac
commit 6f774358e7
2 changed files with 1 additions and 15 deletions

View File

@ -289,21 +289,6 @@ static int DevQueueTask(void *ds)
return 1;
}
void DevSigFun(void *ds, int iSignal, void *pSigData) {
DevSer *devser = ds;
AsconStatus status;
DevAction *action;
SchedHeader *header;
if (devser->stopTask) {
return;
}
for (header = devser->headers; header != NULL; header = header->next) {
// TODO ffr Set interrupt level on the action handler node's sics_int property
// An action handler should clear the sics_int property after it is called.
}
}
DevSer *DevMake(SConnection * con, int argc, char *argv[])
{
DevSer *devser = NULL;