debug list: now use local current list instead of current_list to avoid thread concurrency

This commit is contained in:
2025-07-02 01:07:09 +02:00
parent cb84a03b0d
commit 3c5cae31cc
4 changed files with 182 additions and 61 deletions
+27 -18
View File
@@ -30,11 +30,13 @@
void remove_all_list_in_##type(struct main_list_##type *var_list);\ void remove_all_list_in_##type(struct main_list_##type *var_list);\
void increment_list_##type(struct main_list_##type * var_list);\ void increment_list_##type(struct main_list_##type * var_list);\
void decrement_list_##type(struct main_list_##type * var_list);\ void decrement_list_##type(struct main_list_##type * var_list);\
struct list_##type * search_first_occ_with_mov_from_curr_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type), void (*incr_or_decr_mov)(struct main_list_##type *));\ struct list_##type * search_first_occ_with_mov_from_curr_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type), struct list_##type * (*incr_or_decr_mov)(struct list_##type *));\
struct list_##type * search_first_occ_from_begin_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type));\ struct list_##type * search_first_occ_from_begin_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type));\
struct list_##type * pull_end_from_list_##type(struct main_list_##type *var_list);\ struct list_##type * pull_end_from_list_##type(struct main_list_##type *var_list);\
struct list_##type * pull_begin_from_list_##type(struct main_list_##type *var_list);\ struct list_##type * pull_begin_from_list_##type(struct main_list_##type *var_list);\
void append_list_##type(struct main_list_##type *var_list, struct list_##type *list);\ void append_list_##type(struct main_list_##type *var_list, struct list_##type *list);\
struct list_##type * local_increment_list_##type(struct list_##type *list);\
struct list_##type * local_decrement_list_##type(struct list_##type *list);\
GENERATE_LIST_ALL(TYPE_CHAR) GENERATE_LIST_ALL(TYPE_CHAR)
@@ -185,11 +187,11 @@ GENERATE_LIST_ALL(TYPE_PTR)
}\ }\
}\ }\
void remove_all_list_in_##type(struct main_list_##type *var_list){\ void remove_all_list_in_##type(struct main_list_##type *var_list){\
struct list_##type *tmp = var_list->begin_list;\ struct list_##type *tmp = var_list->begin_list, *prec_tmp;\
while(tmp){\ while(tmp){\
var_list->current_list = tmp;\ prec_tmp = tmp;\
tmp = tmp->next;\ tmp = tmp->next;\
free(var_list->current_list);\ free(prec_tmp);\
}\ }\
var_list->begin_list = NULL;\ var_list->begin_list = NULL;\
var_list->current_list = NULL;\ var_list->current_list = NULL;\
@@ -209,16 +211,23 @@ GENERATE_LIST_ALL(TYPE_PTR)
var_list->current_list = (var_list->current_list)->preview;\ var_list->current_list = (var_list->current_list)->preview;\
--(var_list->current_index);\ --(var_list->current_index);\
}\ }\
struct list_##type * search_first_occ_with_mov_from_curr_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type), void (*incr_or_decr_mov)(struct main_list_##type *)){\ struct list_##type * local_increment_list_##type(struct list_##type *list){\
for(; var_list->current_list; incr_or_decr_mov(var_list)){\ if(list) return list->next;\
if(0 == funcCmp(value, var_list->current_list->value))\ return NULL;\
return var_list->current_list;\ }\
struct list_##type * local_decrement_list_##type(struct list_##type *list){\
if (list) return list->preview;\
return NULL;\
}\
struct list_##type * search_first_occ_with_mov_from_curr_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type), struct list_##type * (*incr_or_decr_mov)(struct list_##type *)){\
for(struct list_##type *list_cur = var_list->current_list; list_cur; list_cur = incr_or_decr_mov(list_cur)){\
if(0 == funcCmp(value, list_cur->value))\
return list_cur;\
}\ }\
return NULL;\ return NULL;\
}\ }\
struct list_##type * search_first_occ_from_begin_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type)){\ struct list_##type * search_first_occ_from_begin_in_list_##type(struct main_list_##type *var_list, type value, int (*funcCmp)(type, type)){\
move_current_to_begin_list_##type(var_list);\ return search_first_occ_with_mov_from_curr_in_list_##type(var_list, value, funcCmp, local_increment_list_##type);\
return search_first_occ_with_mov_from_curr_in_list_##type(var_list, value, funcCmp, increment_list_##type);\
}\ }\
struct list_##type * pull_end_from_list_##type(struct main_list_##type *var_list){\ struct list_##type * pull_end_from_list_##type(struct main_list_##type *var_list){\
struct list_##type *ret = var_list->end_list;\ struct list_##type *ret = var_list->end_list;\
@@ -279,12 +288,12 @@ GENERATE_LIST_ALL(TYPE_PTR)
#define GEN_FUNC_PTR_LIST_FREE(type)\ #define GEN_FUNC_PTR_LIST_FREE(type)\
void remove_all_ptr_type_list_##type(struct main_list_##type *var_list){\ void remove_all_ptr_type_list_##type(struct main_list_##type *var_list){\
struct list_##type *tmp = var_list->begin_list;\ struct list_##type *tmp = var_list->begin_list, *prec_tmp;\
while(tmp){\ while(tmp){\
var_list->current_list = tmp;\ prec_tmp = tmp;\
tmp = tmp->next;\ tmp = tmp->next;\
free_##type(var_list->current_list->value);\ free_##type(prec_tmp->value);\
free(var_list->current_list);\ free(prec_tmp);\
}\ }\
var_list->begin_list = NULL;\ var_list->begin_list = NULL;\
var_list->current_list = NULL;\ var_list->current_list = NULL;\
@@ -293,12 +302,12 @@ GENERATE_LIST_ALL(TYPE_PTR)
var_list->current_index = 0;\ var_list->current_index = 0;\
}\ }\
void purge_ptr_type_list_##type(struct main_list_##type *var_list){\ void purge_ptr_type_list_##type(struct main_list_##type *var_list){\
struct list_##type *tmp = var_list->begin_list;\ struct list_##type *tmp = var_list->begin_list, *prec_tmp;\
while(tmp){\ while(tmp){\
var_list->current_list = tmp;\ prec_tmp = tmp;\
tmp = tmp->next;\ tmp = tmp->next;\
free_##type(var_list->current_list->value);\ free_##type(prec_tmp->value);\
free(var_list->current_list);\ free(prec_tmp);\
}\ }\
var_list->begin_list = NULL;\ var_list->begin_list = NULL;\
var_list->current_list = NULL;\ var_list->current_list = NULL;\
+3 -1
View File
@@ -62,6 +62,7 @@ struct y_socket_t{
pthread_mutex_t *mut_nodes; pthread_mutex_t *mut_nodes;
int go_on; int go_on;
pthread_mutex_t *mut_go_on; pthread_mutex_t *mut_go_on;
int nb_workers;
}; };
@@ -74,7 +75,8 @@ struct argdst {
}; };
//struct y_socket_t * y_socket_create_(char * port); //struct y_socket_t * y_socket_create_(char * port);
struct y_socket_t * y_socket_create(char * port, size_t size_fds); struct y_socket_t * y_socket_create(char * port, size_t size_fds, int nb_workers);
struct y_socket_t * y_socket_create_(char * port);
void y_socket_free(struct y_socket_t *socket); void y_socket_free(struct y_socket_t *socket);
+147 -37
View File
@@ -23,8 +23,8 @@ GEN_FUNC_PTR_LIST_FREE(y_ptr_STRING){
size_t total_size_list_y_ptr_STRING(struct main_list_y_ptr_STRING *mstr){ size_t total_size_list_y_ptr_STRING(struct main_list_y_ptr_STRING *mstr){
size_t total_size=0; size_t total_size=0;
for(move_current_to_begin_list_y_ptr_STRING(mstr); mstr->current_list; increment_list_y_ptr_STRING(mstr)){ for(struct list_y_ptr_STRING * local_current = mstr->begin_list; local_current; local_current = local_current->next){
total_size += mstr->current_list->value->size; total_size += local_current->value->size;
} }
printf("debug: totalsize :%ld\n",total_size); printf("debug: totalsize :%ld\n",total_size);
return total_size; return total_size;
@@ -38,11 +38,12 @@ size_t copy_list_y_ptr_STRING_to_one_string(char **p_dst_str, struct main_list_y
char *cur_str = dst_str; char *cur_str = dst_str;
size_t local_size=0; size_t local_size=0;
size_t count_size=0; size_t count_size=0;
for(move_current_to_begin_list_y_ptr_STRING(mstr); mstr->current_list; increment_list_y_ptr_STRING(mstr)){ //for(move_current_to_begin_list_y_ptr_STRING(mstr); mstr->current_list; increment_list_y_ptr_STRING(mstr))
local_size = mstr->current_list->value->size; for(struct list_y_ptr_STRING * local_current = mstr->begin_list; local_current; local_current = local_current->next){
local_size = local_current->value->size;
// printf("debug: local_size :%ld\n",local_size); // printf("debug: local_size :%ld\n",local_size);
for(size_t i=0; i<local_size; ++i){ for(size_t i=0; i<local_size; ++i){
cur_str[i]=mstr->current_list->value->buf[i]; cur_str[i]=local_current->value->buf[i];
} }
count_size += local_size; count_size += local_size;
// printf("debug: countsize :%ld \n",count_size); // printf("debug: countsize :%ld \n",count_size);
@@ -53,7 +54,7 @@ size_t copy_list_y_ptr_STRING_to_one_string(char **p_dst_str, struct main_list_y
} }
struct y_socket_t * y_socket_create(char *port, size_t size_fds){ struct y_socket_t * y_socket_create(char *port, size_t size_fds, int nb_workers){
struct y_socket_t *sock_temp=malloc(sizeof(struct y_socket_t)); struct y_socket_t *sock_temp=malloc(sizeof(struct y_socket_t));
if(size_fds>=nbIpVersion) if(size_fds>=nbIpVersion)
sock_temp->size_fds = size_fds; sock_temp->size_fds = size_fds;
@@ -68,10 +69,12 @@ struct y_socket_t * y_socket_create(char *port, size_t size_fds){
sock_temp->go_on = 1; sock_temp->go_on = 1;
sock_temp->mut_go_on = malloc(sizeof(pthread_mutex_t)); sock_temp->mut_go_on = malloc(sizeof(pthread_mutex_t));
pthread_mutex_init(sock_temp->mut_go_on, NULL); pthread_mutex_init(sock_temp->mut_go_on, NULL);
sock_temp->nb_workers = nb_workers;
return sock_temp; return sock_temp;
} }
struct y_socket_t * y_socket_create_(char * port){ struct y_socket_t * y_socket_create_(char * port){
return y_socket_create(port, 2); return y_socket_create(port, 2, 2);
} }
void y_socket_free(struct y_socket_t *socket){ void y_socket_free(struct y_socket_t *socket){
free(socket->fds); free(socket->fds);
@@ -90,7 +93,19 @@ int check_y_socket_go_on(struct y_socket_t *sock){
return ret; return ret;
} }
struct arg_update_nodes{
y_NODE_T node;
struct main_list_y_NODE_T *nodes;
};
void update_nodes(y_NODE_T node, struct main_list_y_NODE_T *nodes){ void update_nodes(y_NODE_T node, struct main_list_y_NODE_T *nodes){
#if 0
void* update_nodes(void* arg)
struct arg_update_nodes * argU=(struct arg_update_nodes*)arg;
y_NODE_T node=argU->node;
struct main_list_y_NODE_T *nodes=argU->nodes;
#endif
char host[NI_MAXHOST], service[NI_MAXSERV]; char host[NI_MAXHOST], service[NI_MAXSERV];
int status = getnameinfo((struct sockaddr*)&(node.addr), node.addr_len, host, NI_MAXHOST, service, NI_MAXSERV, NI_NUMERICHOST); int status = getnameinfo((struct sockaddr*)&(node.addr), node.addr_len, host, NI_MAXHOST, service, NI_MAXSERV, NI_NUMERICHOST);
if(status) if(status)
@@ -102,15 +117,23 @@ void update_nodes(y_NODE_T node, struct main_list_y_NODE_T *nodes){
if(NULL == search_node_in_list_y_NODE_T(nodes, node)) if(NULL == search_node_in_list_y_NODE_T(nodes, node))
push_back_list_y_NODE_T(nodes, node); push_back_list_y_NODE_T(nodes, node);
// return NULL;
} }
struct send_arg{ struct arg_send_file{
struct pollfd *fd; struct pollfd *fds;
struct main_list_y_NODE_T *nodes; struct main_list_y_NODE_T *nodes;
char * filename; char * filename;
}; };
void y_socket_send_file_for_all_nodes(struct pollfd *fds, struct main_list_y_NODE_T *nodes, char * filename){ //void y_socket_send_file_for_all_nodes(struct pollfd *fds, struct main_list_y_NODE_T *nodes, char * filename)
void* y_socket_send_file_for_all_nodes(void* arg){
struct arg_send_file *argS=(struct arg_send_file*)arg;
struct pollfd *fds=argS->fds;
struct main_list_y_NODE_T *nodes=argS->nodes;
char * filename=argS->filename;
char tempAddr[BUF_SIZE+1]; char tempAddr[BUF_SIZE+1];
int c_af; int c_af;
// char host[NI_MAXHOST], service[NI_MAXSERV]; // char host[NI_MAXHOST], service[NI_MAXSERV];
@@ -132,7 +155,7 @@ void y_socket_send_file_for_all_nodes(struct pollfd *fds, struct main_list_y_NOD
fd_file = open( filename , O_RDONLY); fd_file = open( filename , O_RDONLY);
if(fd_file == -1){ if(fd_file == -1){
fprintf(stderr,"error opening file |%s| for reading\n",filename); fprintf(stderr,"error opening file |%s| for reading\n",filename);
return /*NULL*/; return NULL;
} }
@@ -143,21 +166,22 @@ void y_socket_send_file_for_all_nodes(struct pollfd *fds, struct main_list_y_NOD
// sprintf(msgRet, "from %s:%s =%s",host, service, buf); // sprintf(msgRet, "from %s:%s =%s",host, service, buf);
// len_msgRet = strlen(msgRet); // len_msgRet = strlen(msgRet);
printf("debug: sending response %s :\n",buf_send); ///printf("debug: sending response %s :\n",buf_send);
FOR_LIST_FORM_BEGIN(y_NODE_T, nodes){ //FOR_LIST_FORM_BEGIN(y_NODE_T, nodes)
for(struct list_y_NODE_T *local_list_current = nodes->begin_list; local_list_current; local_list_current=local_list_current->next ){
//memset(tempAddr, 0, BUF_SIZE+1); //memset(tempAddr, 0, BUF_SIZE+1);
c_af=(nodes->current_list->value).addr.ss_family; c_af=(local_list_current->value).addr.ss_family;
if(c_af==AF_INET){ if(c_af==AF_INET){
if(NULL == inet_ntop(c_af, if(NULL == inet_ntop(c_af,
&(GET_IN_type_ADDR(&(nodes->current_list->value),)), &(GET_IN_type_ADDR(&(local_list_current->value),)),
tempAddr, BUF_SIZE/*(argSock->nodes->current_list->value).addr_len*/)){ tempAddr, BUF_SIZE/*(argSock->local_list_current->value).addr_len*/)){
fprintf(stderr, "error inet_ntop v4\n"); fprintf(stderr, "error inet_ntop v4\n");
} }
}else if(c_af==AF_INET6){ }else if(c_af==AF_INET6){
if(NULL == inet_ntop(c_af, if(NULL == inet_ntop(c_af,
&(GET_IN_type_ADDR(&(nodes->current_list->value),6)), &(GET_IN_type_ADDR(&(local_list_current->value),6)),
tempAddr, BUF_SIZE /*(argSock->nodes->current_list->value).addr_len*/)){ tempAddr, BUF_SIZE /*(argSock->local_list_current->value).addr_len*/)){
fprintf(stderr, "error inet_ntop v6 :errno=%d\n",errno); fprintf(stderr, "error inet_ntop v6 :errno=%d\n",errno);
} }
} }
@@ -168,28 +192,29 @@ void y_socket_send_file_for_all_nodes(struct pollfd *fds, struct main_list_y_NOD
} }
#endif #endif
printf("debug: destination %s :\n",tempAddr); /// printf("debug: destination %s :\n",tempAddr);
#if 1 #if 1
if(sendto(fds[(c_af==AF_INET6)].fd, if(sendto(fds[(c_af==AF_INET6)].fd,
buf_send, retread, buf_send, retread,
/*msgRet, len_msgRet,*/ /*msgRet, len_msgRet,*/
0, 0,
(struct sockaddr*)&((nodes->current_list->value).addr), (struct sockaddr*)&((local_list_current->value).addr),
(nodes->current_list->value).addr_len) != (local_list_current->value).addr_len) !=
retread retread
/*len_msgRet*/ /*len_msgRet*/
){ ){
fprintf(stderr, "Error sending response to %s\n",tempAddr); fprintf(stderr, "Error sending response to %s\n",tempAddr);
}else }else
printf("debug: sending response to %s\n",tempAddr); printf("debug: sending response to < %s >",tempAddr);
#endif #endif
} }
//memset(buf_send, 0, BUF_SIZE+1); //memset(buf_send, 0, BUF_SIZE+1);
} }
close(fd_file); close(fd_file);
printf("fd=%d closed: filename=%s\n",fd_file,filename); printf("debug: fd=%d closed: filename=%s\n",fd_file,filename);
return NULL;
} }
void y_socket_get_fds(struct pollfd * fds, char * port, char * addrDistant){ void y_socket_get_fds(struct pollfd * fds, char * port, char * addrDistant){
@@ -260,25 +285,73 @@ int flags = fcntl(fds[af].fd, F_GETFL);
freeaddrinfo(result); freeaddrinfo(result);
} }
void y_socket_handler_(char * buf, struct pollfd *fds, struct y_socket_t *sock){ struct arg_handler_{
char *buf;
struct pollfd *fds;
y_NODE_T node;
struct y_socket_t *sock;
struct argWorker *argw ;
};
//void y_socket_handler_(char * buf, struct pollfd *fds, struct y_socket_t *sock)
void* y_socket_handler_(void *arg){
struct arg_handler_ *argH = (struct arg_handler_ *)arg;
char *buf=argH->buf;
struct pollfd *fds=argH->fds;
struct y_socket_t *sock=argH->sock;
struct argWorker *argw=argH->argw;
struct main_list_y_NODE_T *nodes = sock->nodes; struct main_list_y_NODE_T *nodes = sock->nodes;
update_nodes(argH->node, nodes);
printf("\n\n:::::::::::::::::::::::::::handler: : \n\n%s\n\n::::::::::::::::::::::::::\n",buf); printf("\n\n:::::::::::::::::::::::::::handler: : \n\n%s\n\n::::::::::::::::::::::::::\n",buf);
if(strncmp(buf, "GET", 3)==0){ if(strncmp(buf, "get", 3)==0){
if(strncmp(buf+4,"file",4)==0){ if(strncmp(buf+4,"file",4)==0){
char *filename = buf + 9; char *filename = buf + 9;
y_socket_send_file_for_all_nodes(fds, nodes, filename) ; struct arg_send_file *argS=malloc(sizeof(struct arg_send_file));
argS->fds=fds;
argS->nodes=nodes;
argS->filename=filename;
push_back_list_TYPE_PTR(argw->list_arg, argS);
struct y_task_t task_send={
.func=y_socket_send_file_for_all_nodes,
.arg=argS,
.status=TASK_PENDING,
};
push_tasQ(argw->argx->tasQ, task_send);
//y_socket_send_file_for_all_nodes(fds, nodes, filename) ;
} }
} }
if(strncmp(buf, "UPDATE", 6)==0){ if(strncmp(buf, "update", 6)==0){
if(strncmp(buf+7,"kill",4)==0){ if(strncmp(buf+7,"kill",4)==0){
pthread_mutex_lock(sock->mut_go_on); pthread_mutex_lock(sock->mut_go_on);
sock->go_on = 0; sock->go_on = 0;
pthread_mutex_unlock(sock->mut_go_on); pthread_mutex_unlock(sock->mut_go_on);
// kill_all_workers(argw);
// printf("debug: kill_all\n");
} }
} }
} }
void *y_socket_poll_fds(void *arg){ void *y_socket_poll_fds(void *arg){
struct y_socket_t * argSock = (struct y_socket_t*)arg; struct y_socket_t * argSock = (struct y_socket_t*)arg;
// // //
struct main_list_ptr_y_WORKER_T * workers = create_var_list_ptr_y_WORKER_T();
struct main_list_TYPE_PTR * list_arg = create_var_list_TYPE_PTR();
struct argExecTasQ *argx = create_argExecTasQ();
pthread_mutex_t *mut_workers = malloc(sizeof(pthread_mutex_t));
pthread_mutex_init(mut_workers, NULL);
//int nb_workers=2;
for(int i=0; i< argSock->nb_workers; ++i){
struct y_worker_t *pw= create_ptr_y_WORKER_T(workers, list_arg, mut_workers, argx, GO_ON_WORKER, i);
printf("debug:  - / -----  -- / --- %d workers %ld created\n",argSock->nb_workers,(pw->arg->pworker->id));
//usleep(500);
}
/// /// ///
struct pollfd *fds = argSock->fds; struct pollfd *fds = argSock->fds;
y_socket_get_fds(fds, argSock->port, NULL); y_socket_get_fds(fds, argSock->port, NULL);
@@ -294,7 +367,9 @@ void *y_socket_poll_fds(void *arg){
ssize_t nread; ssize_t nread;
char buf[BUF_SIZE]; char buf[BUF_SIZE];
struct main_list_y_ptr_STRING *m_str=create_var_list_y_ptr_STRING(); struct main_list_y_ptr_STRING *m_str=create_var_list_y_ptr_STRING();
char *temp_all_buf=NULL;
// char *temp_all_buf=NULL;
// char msgRet[BUF_SIZE + NI_MAXHOST + NI_MAXSERV + 100]; // char msgRet[BUF_SIZE + NI_MAXHOST + NI_MAXSERV + 100];
// int len_msgRet; // int len_msgRet;
@@ -338,20 +413,44 @@ void *y_socket_poll_fds(void *arg){
} }
update_nodes(node, argSock->nodes); #if 0
struct arg_update_nodes *argUP_N=malloc(sizeof(struct arg_update_nodes));
argUP_N->node=node;
argUP_N->nodes=argSock->nodes;
push_back_list_TYPE_PTR(list_arg, argUP_N);
struct y_task_t task_update_node={
.func=update_nodes,
.arg=argUP_N,
.status=TASK_PENDING,
};
push_tasQ(argx->tasQ, task_update_node);
#endif
//update_nodes(node, argSock->nodes);
/*
if(temp_all_buf){ if(temp_all_buf){
free(temp_all_buf); free(temp_all_buf);
temp_all_buf=NULL; temp_all_buf=NULL;
} }*/
/*size_t total_buf = */ copy_list_y_ptr_STRING_to_one_string(&temp_all_buf , m_str); /*size_t total_buf = */
char * temp_all_buf = NULL;
//printf("msg : %s\n",buf); copy_list_y_ptr_STRING_to_one_string(&temp_all_buf , m_str);
//printf("msg : %s\n",temp_all_buf); push_back_list_TYPE_PTR(list_arg, temp_all_buf);
struct arg_handler_ *ptr_argHandl = malloc(sizeof(struct arg_handler_));
ptr_argHandl->buf = temp_all_buf;
ptr_argHandl->fds=fds;
ptr_argHandl->sock=argSock;
ptr_argHandl->node=node;
ptr_argHandl->argw=workers->begin_list->value->arg;
push_back_list_TYPE_PTR(list_arg, ptr_argHandl);
struct y_task_t task_handl = {
.func=y_socket_handler_,
.arg=ptr_argHandl,
.status=TASK_PENDING,
};
push_tasQ(argx->tasQ, task_handl);
/// ///
/// //y_socket_handler_(temp_all_buf, fds, argSock);
y_socket_handler_(temp_all_buf, fds, argSock);
/// ///
} }
@@ -368,11 +467,22 @@ void *y_socket_poll_fds(void *arg){
} }
purge_ptr_type_list_y_ptr_STRING(m_str); purge_ptr_type_list_y_ptr_STRING(m_str);
/*
if(temp_all_buf){ if(temp_all_buf){
free(temp_all_buf); free(temp_all_buf);
temp_all_buf=NULL; temp_all_buf=NULL;
} }
*/
//// //// ////
kill_all_workers(workers->begin_list->value->arg);
printf("debug: kill all done\n");
///// ///// /////
return NULL; return NULL;
} }
+2 -2
View File
@@ -25,7 +25,7 @@
TEST(first){ TEST(first){
struct y_socket_t *firstSock = y_socket_create("1600", 2); struct y_socket_t *firstSock = y_socket_create_("1600");
LOG("create y_socket_t in port |%s|\n",firstSock->port); LOG("create y_socket_t in port |%s|\n",firstSock->port);
y_socket_free(firstSock); y_socket_free(firstSock);
@@ -164,7 +164,7 @@ TEST(searchNode){
TEST(pollThread){ TEST(pollThread){
struct y_socket_t *argS=y_socket_create("1600", 2); struct y_socket_t *argS=y_socket_create("1600", 2, 3);
pthread_t pollTh; pthread_t pollTh;
pthread_create(&pollTh, NULL, y_socket_poll_fds, (void*)argS); pthread_create(&pollTh, NULL, y_socket_poll_fds, (void*)argS);