Commit febf8015 authored by Laughing's avatar Laughing Committed by Luca Boccassi

bug fix: AIX pollset error (#2233)

* bug fix: AIX pollset error

buf fix:  AIX only, pollset 'rm_fd' set fd_table to null first then set pe->fd to retired_fd

* remove extra spaces

remove extra spaces
parent 294bdb4e
......@@ -98,13 +98,13 @@ void zmq::pollset_t::rm_fd (handle_t handle_)
pc.events = 0;
pollset_ctl (pollset_fd, &pc, 1);
fd_table [pe->fd] = NULL;
pe->fd = retired_fd;
retired.push_back (pe);
// Decrease the load metric of the thread.
adjust_load (-1);
fd_table [pe->fd] = NULL;
}
void zmq::pollset_t::set_pollin (handle_t handle_)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment