初级会员
- 积分
- 83
- 金钱
- 83
- 注册时间
- 2018-4-7
- 在线时间
- 16 小时
|
1金钱
本帖最后由 yukang1744 于 2020-3-18 14:26 编辑
如题,我在线程中FD_SET了,程序还是卡在select这里。请教各位大神!代码如下。
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h> // mkfifo
#include <sys/stat.h> // mkfifo
#include <pthread.h>
#define MAX_BUFFER_SIZE 1024 /* 缓冲区大小*/
#define IN_FILES 2 /* 多路复用输入文件数目*/
#define MAX(a, b) ((a > b)?(a)b))
int fds[IN_FILES] = {1,2};
fd_set inset;
void *testfunc(void *arg)
{
int i;
sleep(1);
for (i = 0; i < IN_FILES; i++)
{
FD_SET(fds, &inset);
}
}
int main(void)
{
char buf[MAX_BUFFER_SIZE];
int i, res, maxfd;
pthread_t _mthread;
struct timeval tv;
FD_ZERO(&inset);
if (pthread_create(&_mthread, NULL, (void *)testfunc, NULL) != 0)
{
fprintf(stderr, "thread create failed\n");
return -1;
}
/*取出两个文件描述符中的较大者*/
maxfd = MAX(fds[0], fds[1]);
res = select(maxfd + 1, &inset, NULL, NULL, NULL);
for (i = 0; i < IN_FILES; i++)
{
if(FD_ISSET(fds, &inset))
printf("Select ok\n");
}
return 0;
}
|
最佳答案
查看完整内容[请看2#楼]
fds用文件描述符就可以了,不能直接赋整数值。
fds[0] = open("/home/embed/test1.txt", O_WRONLY | O_RDONLY);
|