diff options
author | yalei wang <wylandrea@gmail.com> | 2018-07-30 02:58:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2018-07-30 02:58:09 +0000 |
commit | 51884d17a7e9a5a6f15ac95707303a8479c1013f (patch) | |
tree | f48e6dcf26e60b62c51b7b3ed9cb1e416211a590 /src/nSocket/nstack | |
parent | 74473a500b7c3dc38aec7f6eb3146bd5287fa52c (diff) | |
parent | 5b40b163195b59de61896c759694848ae93fb459 (diff) |
Merge "Fix: some typos"
Diffstat (limited to 'src/nSocket/nstack')
-rw-r--r-- | src/nSocket/nstack/nstack_socket.c | 2 |
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 ()); } |