- Process B epolls on the pipe (EPOLLIN|EPOLLET).
- Process A writes 1KiB in pipe.
- Process B wakes up.
- Process B reads 1KiB from the pipe.
- Process A writes 1KiB in pipe.
- Process B epolls on the pipe.
The state of the pipe does not change during epoll, but has changed since the last read. Will process B wake up again?