| 361 | } |
| 362 | |
| 363 | void |
| 364 | fdset_pipe_notify(struct fdset *fdset) |
| 365 | { |
| 366 | int r = write(fdset->u.writefd, "1", 1); |
| 367 | /* |
| 368 | * Just an optimization, we don't care if write() failed |
| 369 | * so ignore explicitly its return value to make the |
| 370 | * compiler happy |
| 371 | */ |
| 372 | RTE_SET_USED(r); |
| 373 | } |
| 374 | |
| 375 | void |
| 376 | fdset_pipe_notify_sync(struct fdset *fdset) |
no test coverage detected