Skip to content

Commit

Permalink
Hide noisy EPOLLET log
Browse files Browse the repository at this point in the history
Issue ish-app#608 had so many of those that it was impossible to see anything
else.
  • Loading branch information
tbodt committed Jan 20, 2020
1 parent afd119b commit 804e387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/epoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ int_t sys_epoll_ctl(fd_t epoll_f, int_t op, fd_t f, addr_t event_addr) {
return _EFAULT;
STRACE(" {events: %#x, data: %#x}", event.events, event.data);
if (event.events & EPOLLET_)
printk("ignoring EPOLLET\n");
TRACE("ignoring EPOLLET\n");
if (event.events & EPOLLONESHOT_) {
printk("unimplemented epoll one-shot\n");
return _EINVAL;
Expand Down

0 comments on commit 804e387

Please sign in to comment.