Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства является частью версии 5.0 Инструментов XCode

Получить эти инструменты:

Если Вы выполняете версию Инструментов XCode кроме 5,0, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.




AIO_CANCEL(2)               BSD System Calls Manual              AIO_CANCEL(2)

NAME
     aio_cancel -- cancel an outstanding asynchronous I/O operation (REALTIME)

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <aio.h>

     int
     aio_cancel(int fildes, struct aiocb *aiocbp);

DESCRIPTION
     The aio_cancel() system call cancels the outstanding asynchronous I/O request for the file descriptor
     specified in fildes.  If aiocbp is specified, only that specific asynchronous I/O request is cancelled.

     Normal asynchronous notification occurs for cancelled requests.  Requests complete with an error result
     of ECANCELED.

RESTRICTIONS
     The aio_cancel() system call does not cancel asynchronous I/O requests for raw disk devices.  The
     aio_cancel() system call will always return AIO_NOTCANCELED for file descriptors associated with raw
     disk devices.

RETURN VALUES
     The aio_cancel() system call returns -1 to indicate an error, or one of the following:

     [AIO_ALLDONE]
                   All of the requests meeting the criteria have finished.

     [AIO_CANCELED]
                   All outstanding requests meeting the criteria specified were cancelled.

     [AIO_NOTCANCELED]
                   Some requests were not cancelled, status for the requests should be checked with
                   aio_error(2).

ERRORS
     An error return from aio_cancel() indicates:

     [EBADF]            The fildes argument is not a valid file descriptor.

SEE ALSO
     aio_error(2), aio_read(2), aio_return(2), aio_suspend(2), aio_write(2), aio(4)

STANDARDS
     The aio_cancel() system call is expected to conform to the IEEE Std 1003.1 (``POSIX.1'') standard.

HISTORY
     The aio_cancel() system call first appeared in FreeBSD 3.0.  The first functional implementation of
     aio_cancel() appeared in FreeBSD 4.0.

AUTHORS
     This manual page was originally written by Wes Peters <wes@softweyr.com>.  Christopher M Sedore
     <cmsedore@maxwell.syr.edu> updated it when aio_cancel() was implemented for FreeBSD 4.0.

BSD                            January 19, 2000                            BSD

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации со ссылками на отзыв ниже.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API через Генератор отчетов Ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.