Skip to content

Commit dddd466

Browse files
committed
ST: Ignore process fork, for single process only
1 parent 7906cb5 commit dddd466

File tree

1 file changed

+0
-43
lines changed

1 file changed

+0
-43
lines changed

trunk/3rdparty/st-srs/event.c

-43
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ static struct _st_kqdata {
7979
int dellist_size;
8080
int dellist_cnt;
8181
int kq;
82-
pid_t pid;
8382
} *_st_kq_data;
8483

8584
#ifndef ST_KQ_MIN_EVTLIST_SIZE
@@ -108,7 +107,6 @@ static struct _st_epolldata {
108107
int evtlist_cnt;
109108
int fd_hint;
110109
int epfd;
111-
pid_t pid;
112110
} *_st_epoll_data;
113111

114112
#ifndef ST_EPOLL_EVTLIST_SIZE
@@ -152,7 +150,6 @@ ST_HIDDEN int _st_kq_init(void)
152150
goto cleanup_kq;
153151
}
154152
fcntl(_st_kq_data->kq, F_SETFD, FD_CLOEXEC);
155-
_st_kq_data->pid = getpid();
156153

157154
/*
158155
* Allocate file descriptor data array.
@@ -388,7 +385,6 @@ ST_HIDDEN void _st_kq_dispatch(void)
388385
tsp = &timeout;
389386
}
390387

391-
retry_kevent:
392388
/* Check for I/O operations */
393389
nfd = kevent(_st_kq_data->kq,
394390
_st_kq_data->addlist, _st_kq_data->addlist_cnt,
@@ -482,24 +478,6 @@ ST_HIDDEN void _st_kq_dispatch(void)
482478
osfd = _st_kq_data->evtlist[i].ident;
483479
_ST_KQ_REVENTS(osfd) = 0;
484480
}
485-
486-
} else if (nfd < 0) {
487-
if (errno == EBADF && _st_kq_data->pid != getpid()) {
488-
/* We probably forked, reinitialize kqueue */
489-
if ((_st_kq_data->kq = kqueue()) < 0) {
490-
/* There is nothing we can do here, will retry later */
491-
return;
492-
}
493-
fcntl(_st_kq_data->kq, F_SETFD, FD_CLOEXEC);
494-
_st_kq_data->pid = getpid();
495-
/* Re-register all descriptors on ioq with new kqueue */
496-
memset(_st_kq_data->fd_data, 0, _st_kq_data->fd_data_size * sizeof(_kq_fd_data_t));
497-
for (q = _ST_IOQ.next; q != &_ST_IOQ; q = q->next) {
498-
pq = _ST_POLLQUEUE_PTR(q);
499-
_st_kq_pollset_add(pq->pds, pq->npds);
500-
}
501-
goto retry_kevent;
502-
}
503481
}
504482
}
505483

@@ -565,7 +543,6 @@ ST_HIDDEN int _st_epoll_init(void)
565543
goto cleanup_epoll;
566544
}
567545
fcntl(_st_epoll_data->epfd, F_SETFD, FD_CLOEXEC);
568-
_st_epoll_data->pid = getpid();
569546

570547
/* Allocate file descriptor data array */
571548
_st_epoll_data->fd_data_size = _st_epoll_data->fd_hint;
@@ -765,26 +742,6 @@ ST_HIDDEN void _st_epoll_dispatch(void)
765742
}
766743
}
767744

768-
if (_st_epoll_data->pid != getpid()) {
769-
/* We probably forked, reinitialize epoll set */
770-
close(_st_epoll_data->epfd);
771-
_st_epoll_data->epfd = epoll_create(_st_epoll_data->fd_hint);
772-
if (_st_epoll_data->epfd < 0) {
773-
/* There is nothing we can do here, will retry later */
774-
return;
775-
}
776-
fcntl(_st_epoll_data->epfd, F_SETFD, FD_CLOEXEC);
777-
_st_epoll_data->pid = getpid();
778-
779-
/* Put all descriptors on ioq into new epoll set */
780-
memset(_st_epoll_data->fd_data, 0, _st_epoll_data->fd_data_size * sizeof(_epoll_fd_data_t));
781-
_st_epoll_data->evtlist_cnt = 0;
782-
for (q = _ST_IOQ.next; q != &_ST_IOQ; q = q->next) {
783-
pq = _ST_POLLQUEUE_PTR(q);
784-
_st_epoll_pollset_add(pq->pds, pq->npds);
785-
}
786-
}
787-
788745
/* Check for I/O operations */
789746
nfd = epoll_wait(_st_epoll_data->epfd, _st_epoll_data->evtlist, _st_epoll_data->evtlist_size, timeout);
790747

0 commit comments

Comments
 (0)