[ Bottom of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]

Technical Reference: Base Operating System and Extensions, Volume 1

pthread_cancel Subroutine

Purpose

Requests the cancellation of a thread.

Library

Threads Library (libpthreads.a)

Syntax

#include <pthread.h>

int pthread_cancel (thread)
pthread_t thread;

Description

The pthread_cancel subroutine requests the cancellation of the thread thread. The action depends on the cancelability of the target thread:

The cancellation of a thread terminates it safely, using the same termination procedure as the pthread_exit (pthread_exit Subroutine) subroutine.

Note
The pthread.h header file must be the first included file of each source file using the threads library. Otherwise, the -D_THREAD_SAFE compilation flag should be used, or the cc_r compiler used. In this case, the flag is automatically set.

Parameters

thread Specifies the thread to be canceled.

Return Values

If successful, the pthread_cancel function returns zero. Otherwise, an error number is returned to indicate the error.

Error Codes

The ptread_cancel function may fail if:

ESRCH No thread could be found corresponding to that specified by the given thread ID.

The pthread_cancel function will not return an error code of EINTR.

Related Information

The pthread_kill (pthread_kill Subroutine) subroutine, pthread_exit (pthread_exit Subroutine) subroutine, pthread_join (pthread_join or pthread_detach Subroutine) subroutine, pthread_cond_wait (pthread_cond_wait or pthread_cond_timedwait Subroutine), and pthread_cond_timedwait (pthread_cond_wait or pthread_cond_timedwait Subroutine) subroutines.

The pthread.h file.

Terminating Threads in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.

Threads Library Quick Reference in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.

[ Top of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]