summaryrefslogtreecommitdiffstats
path: root/src/nSocket
diff options
context:
space:
mode:
Diffstat (limited to 'src/nSocket')
-rw-r--r--src/nSocket/nstack/nstack_socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nSocket/nstack/nstack_socket.c b/src/nSocket/nstack/nstack_socket.c
index 5e96990..59ab34e 100644
--- a/src/nSocket/nstack/nstack_socket.c
+++ b/src/nSocket/nstack/nstack_socket.c
@@ -2436,7 +2436,7 @@ nstack_epoll_ctl (int epfd, int op, int fd, struct epoll_event *event)
if (!epi)
{
ep_event.events |= (EPOLLERR | EPOLLHUP); // Check `man epoll_ctl` if you don't understand , smile :)
- common_mem_rwlock_read_lock (get_fork_lock ()); /* to ensure that there is no fd to create and close when fork. added by tongshaojun t00391048 */
+ common_mem_rwlock_read_lock (get_fork_lock ()); /* to ensure that there is no fd to create and close when fork. */
ret = nsep_epctl_add (ep, fd, &ep_event);
common_mem_rwlock_read_unlock (get_fork_lock ());
}