UpdateFD updates the set of events the fd needs to be notified on.
(fd int32)
| 217 | |
| 218 | // UpdateFD updates the set of events the fd needs to be notified on. |
| 219 | func UpdateFD(fd int32) error { |
| 220 | return shared.notifier.updateFD(fd) |
| 221 | } |
| 222 | |
| 223 | // RemoveFD removes an FD from the list of observed FDs. |
| 224 | func RemoveFD(fd int32) { |
no test coverage detected
searching dependent graphs…