ИМЯ

pthread_testcancel - request delivery of any pending cancelation request

LIBRARY

POSIX threads library ( libpthread, -lpthread)

СИНТАКСИС

#include <pthread.h>
void pthread_testcancel(void);

ОПИСАНИЕ

Calling pthread_testcancel() creates a cancelation point within the calling thread, so that a thread that is otherwise executing code that contains no cancelation points will respond to a cancelation request.
If cancelability is disabled (using pthread_setcancelstate(3)), or no cancelation request is pending, then a call to pthread_testcancel() has no effect.

ВОЗВРАЩАЕМОЕ ЗНАЧЕНИЕ

Эта функция не возвращает значения. Если вызвавшая нить отменяется из-за вызова этой функции, то функция не возвращает управление.

ОШИБКИ

Данная функция всегда завершается успешно.

АТРИБУТЫ

Описание терминов данного раздела смотрите в attributes(7).
Интерфейс Атрибут Значение
pthread_testcancel() Безвредность в нитях MT-Safe
 

СТАНДАРТЫ

POSIX.1-2001, POSIX.1-2008.

ПРИМЕРЫ

See pthread_cleanup_push(3).

СМ. ТАКЖЕ

pthread_cancel(3), pthread_cleanup_push(3), pthread_setcancelstate(3), pthreads(7)

ПЕРЕВОД

Русский перевод этой страницы руководства был сделан Alexey, Azamat Hackimov <[email protected]>, kogamatranslator49 <[email protected]>, Kogan, Max Is <[email protected]>, Yuri Kozlov <[email protected]> и Иван Павлов <[email protected]>
Этот перевод является бесплатной документацией; прочитайте Стандартную общественную лицензию GNU версии 3 или более позднюю, чтобы узнать об условиях авторского права. Мы не несем НИКАКОЙ ОТВЕТСТВЕННОСТИ.
Если вы обнаружите ошибки в переводе этой страницы руководства, пожалуйста, отправьте электронное письмо на [email protected]

Recommended readings

Pages related to pthread_testcancel you should read also:

Questions & Answers

Helpful answers and articles about pthread_testcancel you may found on these sites:
Stack Overflow Server Fault Super User Unix & Linux Ask Ubuntu Network Engineering DevOps Raspberry Pi Webmasters Google Search