add data validity to scheduler

This commit is contained in:
lxsang 2019-07-31 15:16:38 +02:00
parent 568fdfe290
commit 46ef7ca8d8

4
wvnc.c
View File

@ -660,7 +660,7 @@ void* handle(void *data)
else
{
pthread_detach(th);
task = antd_create_task(NULL, NULL, NULL);
task = antd_create_task(NULL, NULL, NULL, time(NULL));
task->priority++;
return task;
}
@ -671,7 +671,7 @@ void* handle(void *data)
__t(cl, "Welcome to WVNC, please use a websocket connection");
}
task = antd_create_task(NULL, (void *)rq, NULL);
task = antd_create_task(NULL, (void *)rq, NULL, rq->client->last_io);
task->priority++;
return task;
//LOG("%s\n", "EXIT Streaming..");