--- ansh/src/daemon2.c 2012/01/23 16:13:07 1.3.2.1 +++ ansh/src/daemon2.c 2012/02/15 16:54:44 1.3.2.2 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ - * $Id: daemon2.c,v 1.3.2.1 2012/01/23 16:13:07 misho Exp $ + * $Id: daemon2.c,v 1.3.2.2 2012/02/15 16:54:44 misho Exp $ * ************************************************************************* The ELWIX and AITNET software is distributed under the following @@ -144,7 +144,7 @@ void * fdTx(sched_task_t *task) { struct tagProc *proc; - struct timeval tv = { 0 }; + struct timespec ts = { 0 }; int wlen; FTRACE(3); @@ -175,8 +175,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; } @@ -185,7 +185,7 @@ void * fdRx(sched_task_t *task) { struct tagProc *proc; - struct timeval tv = { 0 }; + struct timespec ts = { 0 }; int rlen; FTRACE(3); @@ -220,8 +220,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; } @@ -230,7 +230,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); @@ -259,8 +259,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; }