- 论坛徽章:
- 1
|
本帖最后由 Gnixfeng 于 2014-10-23 16:36 编辑
例子是UNP第30章里的例子。源码附在后面。
运行成功是这样子的:运行服务器 $ ./pthread_server 49001和客户:$ ./client localhost 49001 5 10 4000
服务器显示:
客户显示:
错误描述:
第一种错误情况:运行服务器 $ ./pthread_server 49001和客户:$ ./client localhost 49001 5 10 4000
服务器显示
客户显示
第二中出错情况:运行服务器 $ ./pthread_server 49001和客户:$ ./client localhost 49001 5 10 4000
第三中出错情况:运行服务器 $ ./pthread_server 49001和客户:$ ./client localhost 49001 5 10 4000
有时成功,有时错误。我怀疑是不是资源限制的问题。如果把线程换成进程就不会出现这种问题。
想一天了,都没弄清楚。望指教啊!
服务器主程序,包装好的程序都在unp.h中定义了- #include "../lib/unp.h"
- int main(int argc, const char *argv[])
- {
- int listenfd, connfd;
- void sig_int(int);
- void *doit(void*);
- pthread_t tid;
- socklen_t clilen, addrlen;
- struct sockaddr *cliaddr;
- if (argc == 2){
- listenfd = Tcp_listen(NULL, argv[1], &addrlen);
- }else if(argc == 3){
- listenfd = Tcp_listen(argv[1], argv[2], &addrlen);
- }else
- err_quit("usage:pthraed_server <Host/IPadrress> <service/#port>");
- cliaddr = malloc(addrlen);
- Signal(SIGINT, sig_int);
- for( ; ;)
- {
- clilen = addrlen;
- connfd = Accept(listenfd, cliaddr, &clilen);
- printf("Connecting form %s\n",
- sock_ntop((SA *)cliaddr, clilen));
-
- pthread_create(&tid, NULL, &doit, (void*)connfd);
- }
- return 0;
- }
- void *
- doit(void *arg)
- {
- void web_child(int);
- pthread_detach(pthread_self());
- //printf("connfd: %d\n", (int)arg);
- web_child((int)arg);
- Close((int) arg);
- //printf("close %d\n", (int)arg);
- return(NULL);
- }
- /* end serv06 */
- void
- sig_int(int signo)
- {
- void pr_cpu_time(void);
- pr_cpu_time();
- exit(0);
- }
复制代码 web_child函数,MAXLINE等都已经在头文件unp.h中定义- #include "unp.h"
- #define MAXN 16384
- void web_child(int connfd)
- {
- int ntowrite;
- ssize_t nread;
- char line[MAXLINE], result[MAXN];
- for ( ; ;){
- if ((nread = Readline(connfd, line, MAXLINE)) == 0)
- return;
- ntowrite = atoi(line);
- if (ntowrite <= 0 || ntowrite > MAXN)
- err_quit("client request for %d bytes", ntowrite);
- Writen(connfd, result, ntowrite);
- }
- }
复制代码 客户程序:- #include "unp.h"
- #define MAXN 16384
- int main(int argc, const char *argv[])
- {
- int i, j, fd, nchildren, nconnects, nbytes, status;
- pid_t pid;
- ssize_t n;
- char request[MAXLINE], reply[MAXN];
- if (argc != 6)
- err_quit("usage: client <Host/IP> <#Port> <#children>"
- " <#connect> <#bytes/request>");
- nchildren = atol(argv[3]);
- nconnects = atol(argv[4]);
- nbytes = atol(argv[5]);
- snprintf(request, sizeof(request), "%d\n", nbytes);
- printf("nchildren = %d, nconnects = %d\n", nchildren, nconnects);
- for(i = 0; i < nchildren; i++){
- if ((pid = fork()) == 0){
- for(j = 0; j < nconnects; j++)
- {
- fd = tcp_connect(argv[1], argv[2]);
- Write(fd, request, strlen(request));
- if ((n = readn(fd, reply, nbytes)) != nbytes)
- err_quit("server returned %d bytes", n);
- Close(fd);
- printf("close %d\n", fd);
- }
- printf("child %d done\n", i);
- exit(0);
- }
- }
- for( i = 0; i < nchildren; i++)
- if (waitpid(-1, &status, 0) < 0)
- err_sys("waitpid error");
- return 0;
- }
复制代码 |
|