--- ansh/src/daemon3.c 2012/01/23 16:13:07 1.3.2.1 +++ ansh/src/daemon3.c 2012/02/15 16:54:44 1.3.2.2 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ - * $Id: daemon3.c,v 1.3.2.1 2012/01/23 16:13:07 misho Exp $ + * $Id: daemon3.c,v 1.3.2.2 2012/02/15 16:54:44 misho Exp $ * ************************************************************************* The ELWIX and AITNET software is distributed under the following @@ -162,7 +162,7 @@ void * fdTx(sched_task_t *task) { struct tagProc *proc; - struct timeval tv = { 0 }; + struct timespec ts = { 0 }; int wlen; FTRACE(3); @@ -193,8 +193,8 @@ fdTx(sched_task_t *task) /* if Timeout defined, go arm timer */ if (Timeout) { - tv.tv_sec = Timeout; - schedTimer(TASK_ROOT(task), TOfunc, proc, tv, NULL, 0); + ts.tv_sec = Timeout; + schedTimer(TASK_ROOT(task), TOfunc, proc, ts, NULL, 0); } return NULL; } @@ -203,7 +203,7 @@ void * fdRx(sched_task_t *task) { struct tagProc *proc; - struct timeval tv = { 0 }; + struct timespec ts = { 0 }; int rlen; FTRACE(3); @@ -238,8 +238,8 @@ fdRx(sched_task_t *task) /* if Timeout defined, go arm timer */ if (Timeout) { - tv.tv_sec = Timeout; - schedTimer(TASK_ROOT(task), TOfunc, proc, tv, NULL, 0); + ts.tv_sec = Timeout; + schedTimer(TASK_ROOT(task), TOfunc, proc, ts, NULL, 0); } return NULL; } @@ -248,7 +248,7 @@ int spawnLogin(sched_task_t *task, struct tagProc *proc) { int flg; - struct timeval tv = { 0 }; + struct timespec ts = { 0 }; char str[STRSIZ] = { 0 }; FTRACE(3); @@ -280,8 +280,8 @@ spawnLogin(sched_task_t *task, struct tagProc *proc) /* if Timeout defined, go arm timer */ if (Timeout) { - tv.tv_sec = Timeout; - schedTimer(TASK_ROOT(task), TOfunc, proc, tv, NULL, 0); + ts.tv_sec = Timeout; + schedTimer(TASK_ROOT(task), TOfunc, proc, ts, NULL, 0); } break; }