Commit ada65448 authored by David Renshaw's avatar David Renshaw

UnixEventLoop is no longer a thing.

parent 7ac565b3
......@@ -148,7 +148,7 @@ void registerSignalHandler(int signum) {
void registerReservedSignal() {
registerSignalHandler(reservedSignal);
// We also disable SIGPIPE because users of UnixEventLoop almost certainly don't want it.
// We also disable SIGPIPE because users of UnixEventPort almost certainly don't want it.
while (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
int error = errno;
if (error != EINTR) {
......
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