Searched refs:test_fd (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/select/example/ |
A D | select_example.c | 19 int test_fd; in select_example() local 36 if(test_fd < 0) { in select_example() 41 FD_SET(test_fd, &readset); in select_example() 42 maxfd = test_fd + 1; in select_example() 47 FD_SET(test_fd, &readset); in select_example() 50 if (FD_ISSET(test_fd, &readset)) { in select_example() 59 aos_close(test_fd); in select_example() 65 int test_fd; in poll_example() local 70 if(test_fd < 0) { in poll_example() 76 poll_array[0].fd = test_fd; in poll_example() [all …]
|
/AliOS-Things-master/components/epoll/example/ |
A D | epoll_example.c | 19 int test_fd = -1; in epoll_example() local 26 test_fd = aos_open("/dev/test", O_RDWR); in epoll_example() 27 if(test_fd < 0) { in epoll_example() 39 event.data.fd = test_fd; in epoll_example() 40 ret = epoll_ctl(epoll_fd, EPOLL_CTL_ADD, test_fd, &event); in epoll_example() 48 aos_write(test_fd, &val, sizeof(val)); in epoll_example() 54 aos_read(test_fd, &read_val, sizeof(read_val)); in epoll_example() 55 printf(" read fd =%d, data = %d \r\n", test_fd, read_val); in epoll_example() 57 aos_close(test_fd); in epoll_example()
|
Completed in 3 milliseconds