Отключение файлового дескриптора от менеджера ресурсов
#include <sys/iofunc.h>#include <sys/dispatch.h>int select_detach( void *dpp,int fd );
libc
Функция select_detach() отключает файловый дескриптор fd, который был зарегистрирован в диспетчере dpp, используя вызов функции select_attach().
#include <sys/dispatch.h>#include <stdio.h>#include <stdlib.h>#include <fcntl.h>int my_func( ... ){...}int main( int argc, char **argv ){dispatch_t *dpp;int fd;select_attr_t attr;if ( ( dpp = dispatch_create() ) == NULL ){fprintf( stderr, "%s: Unable to allocate dispatch handle.\n", argv[0] );return (EXIT_FAILURE);}if ( argc ≤ 2 || ( fd = open( argv[1], O_RDWR | O_NONBLOCK )) == -1 ){exit( 0 );}select_attach( dpp, &attr, fd, SELECT_FLAG_READ | SELECT_FLAG_REARM,my_func, NULL );...if ( (select_detach( dpp, fd )) == -1 ){fprintf( stderr, "Failed to detach the file descriptor.\n" );return (1);}}
Примеры использования интерфейса диспетчера см. на страницах dispatch_create(), message_attach(), resmgr_attach() и thread_pool_create().
ЗОСРВ «Нейтрино»
select_attach(), select_query()
Предыдущий раздел: Описание API системной библиотеки