* Remove the source belonging to the specified file descriptor. * * @param fd The file descriptor for which the source should be removed. * * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon * internal errors. */
| 531 | * internal errors. |
| 532 | */ |
| 533 | SR_PRIV int sr_session_source_remove(int fd) |
| 534 | { |
| 535 | return _sr_session_source_remove((gintptr)fd); |
| 536 | } |
| 537 | |
| 538 | /** |
| 539 | * Remove the source belonging to the specified poll descriptor. |
no test coverage detected