mirror of
https://github.com/lxsang/ant-http
synced 2024-12-27 09:18:22 +01:00
fix race bug
This commit is contained in:
parent
cbd574cbc0
commit
428c6ffb89
@ -146,19 +146,36 @@ static void destroy_queue(antd_task_queue_t q)
|
|||||||
free(curr);
|
free(curr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
static int antd_has_pending_task()
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
for(int i = 0; i < N_PRIORITY; i++)
|
||||||
|
if(scheduler.task_queue[i] != NULL)
|
||||||
|
{
|
||||||
|
ret = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if(!ret)
|
||||||
|
{
|
||||||
|
ret = (scheduler.workers_queue != NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
static int antd_available_workers()
|
||||||
|
{
|
||||||
|
int n = 0;
|
||||||
|
//pthread_mutex_lock(&scheduler.worker_lock);
|
||||||
|
for(int i=0; i < scheduler.n_workers; i++)
|
||||||
|
if(scheduler.workers[i].status == 0) n++;
|
||||||
|
//pthread_mutex_unlock(&scheduler.worker_lock);
|
||||||
|
return n;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
Main API methods
|
Main API methods
|
||||||
init the main scheduler
|
init the main scheduler
|
||||||
*/
|
*/
|
||||||
int antd_available_workers()
|
|
||||||
{
|
|
||||||
int n = 0;
|
|
||||||
pthread_mutex_lock(&scheduler.worker_lock);
|
|
||||||
for(int i=0; i < scheduler.n_workers; i++)
|
|
||||||
if(scheduler.workers[i].status == 0) n++;
|
|
||||||
pthread_mutex_unlock(&scheduler.worker_lock);
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
* assign task to a worker
|
* assign task to a worker
|
||||||
*/
|
*/
|
||||||
@ -303,32 +320,17 @@ void antd_execute_task(antd_task_item_t taski)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
int antd_has_pending_task()
|
|
||||||
{
|
|
||||||
int ret = 0;
|
|
||||||
pthread_mutex_lock(&scheduler.scheduler_lock);
|
|
||||||
for(int i = 0; i < N_PRIORITY; i++)
|
|
||||||
if(scheduler.task_queue[i] != NULL)
|
|
||||||
{
|
|
||||||
ret = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
pthread_mutex_unlock(&scheduler.scheduler_lock);
|
|
||||||
if(!ret)
|
|
||||||
{
|
|
||||||
pthread_mutex_lock(&scheduler.queue_lock);
|
|
||||||
ret = (scheduler.workers_queue != NULL);
|
|
||||||
pthread_mutex_unlock(&scheduler.queue_lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
int antd_scheduler_busy()
|
int antd_scheduler_busy()
|
||||||
{
|
{
|
||||||
|
pthread_mutex_lock(&scheduler.worker_lock);
|
||||||
if(antd_available_workers() != scheduler.n_workers) return 1;
|
pthread_mutex_lock(&scheduler.scheduler_lock);
|
||||||
//return 0;
|
pthread_mutex_lock(&scheduler.queue_lock);
|
||||||
return antd_has_pending_task();
|
int ret = (antd_available_workers() != scheduler.n_workers) || antd_has_pending_task();
|
||||||
|
pthread_mutex_unlock(&scheduler.queue_lock);
|
||||||
|
pthread_mutex_unlock(&scheduler.scheduler_lock);
|
||||||
|
pthread_mutex_unlock(&scheduler.worker_lock);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
int antd_scheduler_status()
|
int antd_scheduler_status()
|
||||||
{
|
{
|
||||||
@ -362,7 +364,6 @@ void antd_task_schedule()
|
|||||||
{
|
{
|
||||||
// delegate to other workers by
|
// delegate to other workers by
|
||||||
//pushing to the worker queue
|
//pushing to the worker queue
|
||||||
LOG("delegate to workers\n");
|
|
||||||
pthread_mutex_lock(&scheduler.queue_lock);
|
pthread_mutex_lock(&scheduler.queue_lock);
|
||||||
enqueue(&scheduler.workers_queue, it->task);
|
enqueue(&scheduler.workers_queue, it->task);
|
||||||
free(it);
|
free(it);
|
||||||
|
@ -106,6 +106,4 @@ void antd_execute_task(antd_task_item_t);
|
|||||||
int antd_scheduler_busy();
|
int antd_scheduler_busy();
|
||||||
void antd_attach_task(antd_worker_t* worker);
|
void antd_attach_task(antd_worker_t* worker);
|
||||||
void antd_task_schedule();
|
void antd_task_schedule();
|
||||||
int antd_available_workers();
|
|
||||||
int antd_has_pending_task();
|
|
||||||
#endif
|
#endif
|
6
relay.c
6
relay.c
@ -85,9 +85,9 @@ int main(int argc, char* argv[])
|
|||||||
signal(SIGABRT, SIG_IGN);
|
signal(SIGABRT, SIG_IGN);
|
||||||
signal(SIGINT, stop_serve);
|
signal(SIGINT, stop_serve);
|
||||||
server_sock = startup(&port);
|
server_sock = startup(&port);
|
||||||
struct timeval timeout;
|
//struct timeval timeout;
|
||||||
timeout.tv_sec = 0;
|
//timeout.tv_sec = 0;
|
||||||
timeout.tv_usec = 500;
|
//timeout.tv_usec = 500;
|
||||||
// 0 worker
|
// 0 worker
|
||||||
antd_scheduler_init(0);
|
antd_scheduler_init(0);
|
||||||
// set server socket to non blocking
|
// set server socket to non blocking
|
||||||
|
Loading…
Reference in New Issue
Block a user