epoll_wait() 의 사용법 관련 질문입니다.
인터넷( joinc ) 이나 man 만 보고 소스를 짰는데,
짜다 보니 논리적으로 이해가 안되는 예제코드를 봐서, 이상하다 싶어 곰곰히 생각해 보니, 제가 epoll의 사용법을 잘못 이해하고 있는게 아닌가 하는 생각이 들어 질문 올려 봅니다. 혹시 아시는 분 / 비슷한 내용을 겪으신 분들께서는 답변 부탁드립니다.
int epoll_create( int size )
-> size 만큼의 이벤트 감시( epoll) 영역을 만들고, fd를 반환한다. 이후 조작은 반환된 fd로.
int epoll_ctl( int epfd, int op, int fd, struct epoll_event *event )
-> 감시하려는 fd 를 추가/삭제 등등을 한다( op 에 의해 조정된다 )
int epoll_wait( int epfd, struct epoll_event *events, int maxevents, int timeout )
-> 등록된 fd를 감시한다.
이해가 안되는 건 epoll_ctl, epoll_wait 인데요.
1. epoll_ctl() fd를 등록하려 한다면 로
joinc 예제 소스에 보면,
... struct epoll_events ev; ... ev.events = EPOLLIN | EPOLLERR | EPOLLHUP; ev.data.fd = listenfd; if(epoll_ctl(epfd, EPOLL_CTL_ADD, listenfd, &ev) < 0) { perror("epoll_ctl, adding listenfd\n"); exit(1); }
epoll_ctl() 인자에 event 구조체의 ev.data.fd 에 listenfd 와 event종류를 등록한 후, 등록하는데요. 그럼
pointer 로 등록되는 event구조체가, epoll_ctl() 등록 후 사라져도 문제 없나요?
즉, event 객체를
struct epoll_events *ev;
ev = malloc( sizeof( struct epoll_events ) );
...
ev->events = EPOLLIN | EPOLLERR | EPOLLHUP;
ev->data.fd = listenfd;
sts = epoll_ctl(epfd, EPOLL_CTL_ADD, listenfd, ev);
ev = free( ev );
와 같이 하는거죠.
저는 파라메터 값으로 포인터가 넘어가길레 free하면 안될줄 알고 global 로 선언해 놓고 썼는데, 다른 소스를 보니
void epoll_cli_add(int cli_fd) { struct epoll_event events; /* event control set for read event */ events.events = EPOLLIN; events.data.fd = cli_fd; if( epoll_ctl(g_epoll_fd, EPOLL_CTL_ADD, cli_fd, &events) < 0 ) { printf("[ETEST] Epoll control fails.in epoll_cli_add\n"); } }
이런 식으로 epoll_ctl() 부분을 함수화 시킨 게 있더라구요. 이러면 events 객체는 로컬에 생겼다 함수 끝나면 사라지니까... 역으로 위에서 free를 해도 된다는 이야기로 보입니다. 근데 man page에는 이런 언급이 없어서요(혹은 제가 발견 못한 걸 수 있지요. )
또 하나는, epoll_wait()에서인데요.
int epoll_wait( int epfd, struct epoll_event *events, int maxevents, int timeout )
에서요, 저 events 값이 "이벤트를 감시할 fd값"을 넣는 게 아니고 "이벤트 감시된(이벤트가 일어난) fd값" 을 반환해 주는 건가요?
Wait for events on the epoll file descriptor epfd for a maximum time of timeout milliseconds. The memory area pointed to by events will contain the events that will be available for the caller. Up to maxevents are returned by epoll_wait(2). The maxevents parameter must be greater than zero. Specifying a timeout of -1 makes epoll_wait(2) wait indefinitely, while specifying a timeout equal to zero makes epoll_wait(2) to return immediately even if no events are available (return code equal to zero). The struct epoll_event is defined as :
에서
The memory area pointed to by events will contain the events that will be available for the caller.
-> events 메모리 영역은 함수를 부른 곳( calller )에서 사용할 수 있는 값이 저장된다.
라는 표현이, 어떤 의미인지 잘 모르겠습니다.
혹시 이미 epoll써 봐서 아시는 분들 계시면, 답변 부탁드립니다.
그럼 좋은 하루 되시기 바랍니다.
참고 - 한줄 정리 : epoll 사용법? 누가좀 뉴_뉴..
댓글 달기