* Remove the source belonging to the specified poll descriptor. * * @param pollfd The poll 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. */
| 545 | * internal errors. |
| 546 | */ |
| 547 | SR_PRIV int sr_session_source_remove_pollfd(GPollFD *pollfd) |
| 548 | { |
| 549 | return _sr_session_source_remove((gintptr)pollfd); |
| 550 | } |
| 551 | |
| 552 | /** |
| 553 | * Remove the source belonging to the specified channel. |
nothing calls this directly
no test coverage detected