Deletes a thread attributes object.
Threads Library (libpthreads.a)
#include <pthread.h>
int pthread_attr_destroy (attr) pthread_attr_t *attr;
The pthread_attr_destroy subroutine destroys the thread attributes object attr, reclaiming its storage space. It has no effect on the threads previously created with that object.
attr | Specifies the thread attributes object to delete. |
Upon successful completion, 0 is returned. Otherwise, an error code is returned.
The pthread_attr_destroy subroutine is unsuccessful if the following is true:
EINVAL | The attr parameter is not valid. |
This function will not return an error code of [EINTR].
This subroutine is part of the Base Operating System (BOS) Runtime.
The pthread_attr_init subroutine, pthread_create subroutine, the pthread.h file.
Creating Threads in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
Threads Library Quick Reference in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.