Unregister a notifier. @param fd The eventfd returned by registerNotifier. @return Some if the operation succeeds. Error if the operation fails.
| 1077 | // @return Some if the operation succeeds. |
| 1078 | // Error if the operation fails. |
| 1079 | static Try<Nothing> unregisterNotifier(int fd) |
| 1080 | { |
| 1081 | return os::close(fd); |
| 1082 | } |
| 1083 | |
| 1084 | |
| 1085 | // The process listening on an event notifier. This class is internal |