当前位置:  技术问答>linux和unix

线程控制,但是pthread_create(&pid, NULL, &handle_roution, NULL)更本没走进去????????????

    来源: 互联网  发布时间:2015-05-31

    本文导语:  客户端与服务器建立了socket通信.当第一个客户端与服务器连接上后,便执行一些处理.此时,如果其它客户端要与服务器端连接、执行处理请求时,要在客户端显示服务器对第一个客户的处理还没完成.   也就是说一次只...

客户端与服务器建立了socket通信.当第一个客户端与服务器连接上后,便执行一些处理.此时,如果其它客户端要与服务器端连接、执行处理请求时,要在客户端显示服务器对第一个客户的处理还没完成.
  也就是说一次只处理一个客户的请求,但要通知其它客户服务器正在处理前一个客户的请求.

我产生了线程来控制,但是pthread_create(&pid, NULL, &handle_roution, NULL)更本没走进去.我是用printf来跟踪的.
  帮我看看??????

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 


#define MYPORT 3490
#define PARAMATERNUM 4
#define BACKLOG 10
#define MAXBUFLEN 100


char *chshellname;
int check(char *s1, char *s2);
void doshell();
void * handle_roution(void *p);
int connectcount = 0;

int flag = 0;
pthread_t pid;
int new_sock[2];

int main(int argc, char *argv[])
{
int sockfd,new_fd;
struct sockaddr_in server_addr;
struct sockaddr_in their_addr;
int sin_size;
char buf[MAXBUFLEN];
int addr_len;

printf("argv[1]=%sn",argv[1]);
printf("argv[2]=%sn",argv[2]);
printf("argv[3]=%sn",argv[3]);
printf("argc=%dn",argc);

if (argc != PARAMATERNUM) {
printf("please input the right command!n");
exit(1);
}

if ((sockfd = socket(AF_INET, SOCK_STREAM,0)) == -1) {
perror("socket");
exit(1);
}

server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(MYPORT);
server_addr.sin_addr.s_addr = INADDR_ANY;
bzero(&(server_addr.sin_zero),8);

if (bind(sockfd,(struct sockaddr *)&server_addr,sizeof(struct sockaddr)) == -1) {
perror("bind");
exit(1);
}

if (listen(sockfd,BACKLOG) == -1) {
perror("bind");
exit(1);
}


while (1)
{
new_sock[0] = accept(sockfd, 0, 0);
if (flag) {
printf("@@@@@@@@  send busyingn");
send(new_sock[0], "I'm busying!", strlen("I'm busying!"), 0);
close(new_sock);
} else {
new_sock[1] = new_sock[0];
flag = 1;
pthread_create(&pid, NULL, &handle_roution, NULL);
}
}
}


void * handle_roution(void *p) {

int numbytes;
int new_fd = new_sock[1];
char buf[MAXBUFLEN];

if ((numbytes = recv(new_fd, buf, MAXBUFLEN, 0)) == -1) {
printf("recv errorn");
perror("recv");
close(new_sock[1]);
return NULL;
}

//_sleep(10);
buf[numbytes] = '';

chshellname = "liyuntest.sh";
doshell();

if (send(new_fd,"Hello,world!n",14,0) == -1) {
perror("send");
}

close(new_sock[1]);
flag = 0;
return(NULL);

}

int check(char *s1, char *s2) {
//printf("s1=%sn",s1);
//printf("s2=%sn",s2);

if (strcmp(s1, s2) == 0) {
return 0;
} else {
return -1;

}

void doshell(char *argShellname) {
system("chmod +x liyuntest.sh"); 
system("./liyuntest.sh");
char buf[128]; 
FILE *pp;
//printf("send ok 2n");
if( (pp = popen("./liyuntest.sh", "r")) == NULL ) { 
printf("popen() error!n"); 
exit(1); 

//printf("send ok 3n");
while(fgets(buf, sizeof buf, pp)) { 
//printf("the string is:%s", buf); 
//printf("the string is endn"); 

pclose(pp);
}

|
我assert(pthread_create(...) == 0),结果coredump
编译又没有问题,估计就出在link上面,试一下不就出来了~~

|
void * handle_roution(void *p) {

int numbytes;
int new_fd = new_sock[1];
char buf[MAXBUFLEN];

if ((numbytes = recv(new_fd, buf, MAXBUFLEN, 0)) == -1) {
printf("recv errorn");
perror("recv");
close(new_sock[1]);
return NULL;
}

//_sleep(10);
buf[numbytes] = '';

chshellname = "liyuntest.sh";
doshell();

if (send(new_fd,"Hello,world!n",14,0) == -1) {
perror("send");
}

close(new_sock[1]);
flag = 0;
return(NULL);

}
假设进去了 假设都正确 哪里有打印?除非这个liyuntest.sh
你看呢?

|
不要用printf跟踪,那是有延迟的。
建议:采用写文件实时跟踪。或者使用fprintf跟踪。
你的线程应该已经起来了,可能是中间有一步让你block或者segmentation了。

|
在recv前加输出看是否进入了。如果进入了,就是client的问题了,没有发送数据,导致recv阻塞。

|
同学啊,不是告诉你不要用printf来输出吗?用写文件的办法!能很快定位到错误的地方。

|
pthread_create(&pid, NULL, &handle_roution, NULL);
>>
pthread_create(&pid, NULL, handle_roution, NULL);

    
 
 

您可能感兴趣的文章:

  • linux下进程和线程的区别(fork(),pthread_create())?
  • 用pthread_create建立线程后如何让线程运行的函数在create完了之后才实际运行 相当与windows下的CREATE_SUSPENDED ??
  • 请问:linux下如何将一个类的指针作为参数传给pthread_create创建的线程?
  • 请问:为什么我在守护进程里面用pthread_create来启动线程,经常会卡在那里阿?
  • pthread_create所创建的线程中的static变量
  • pthread_create创建线程问题
  • 为什么pthread_create创建线程出错.有完整代码,哪儿错了,大家给试试.
  • pthread_create()创建一千次以上线程失败!!为什么??请大家帮忙看一下
  • 求助:用pthread_create创建的线程最多为303个,可以更多吗?
  • linux下pthread_create创建线程问题
  • 创建线程函数pthread_create,在c/c++的用法。
  • [请教]pthread_create多线程问题
  • 求救:AIX 4.3上用pthread_create创建线程时居然随机地非法操作?
  • pthread_create 创建线程的时候如何让他先暂停,等我让他运行才运行?
  • pthread_create错误,怎么在C++类中定义线程函数指针
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Java中多线程相关类Thread介绍
  • 一个进程创建了两个线程,如何使得当任何一个线程(比如线程a)结束时,同时也结束线程b,也就是使两个线程一起死掉,怎么办呢?
  • c#多线程更新窗口(winform)GUI的数据
  • java 线程,对当前线程(非主线程)调用sleep,为什么主线程(窗口)也没反应了
  • Windows和Linux下C++类成员方法作为线程函数方法介绍
  • 如何实现一个线程组内多线程的非同不执行,即一个线程执行完毕后再执行下一个线程???
  • c++的boost库多线程(Thread)编程(线程操作,互斥体mutex,条件变量)详解
  • 请问:进程创建的线程是怎样运行的啊,线程的处理函数运行完了,线程就退出了吗?
  • Linux下GCC内置原子操作函数(多线程资源访问)介绍
  • 关于线程的问题,什么样的线程不是active线程?
  • 请问Linux核心支持多线程吗?开发库有线程库吗?线程好用吗?(稳定?)
  • 请问,在一个进程中创建多线程时如何能避免不同的线程获得同一个线程标识
  • 我的一个多线程服务里, 总是有一个线程莫名其妙的变成僵尸线程。
  • 能否通过线程id控制线程的状态?或是观察到线程的状态?
  • 如何在一个线程中启动另外一个线程,然后本线程就退出?
  • 我要设置一个线程的优先级, 这个属性结构并没有线程的id,它怎么知道是设置哪个线程呢?
  • 请问在java多线程中,是只有run(){}内的代码运行在一个新线程下呢?还是这个类中的代码都运行在一个新线程下?
  • gcc链接的库,分不分单线程版本的和多线程版本的?
  • 内核栈~ 内核线程 ~用户线程 之间关系 问题
  • 子线程的数据如何返回给主线程?
  • 如果父线程死掉 那么子线程会不会死掉呢


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3