|
Syntax #include <pthread.h> int pthread_attr_init(pthread_attr_t *attr); Threadsafe: Yes Signal Safe: Yes |
The pthread_attr_init() function initializes a thread attributes object to the default thread attributes. The thread attributes object can be used in a call to pthread_create() to specify attributes of the new thread.
| Attribute | Default value | supported values |
|---|---|---|
| detachstate | PTHREAD_CREATE_JOINABLE | PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_DETACHED |
| schedparam | SCHED_OTHER with priority equal to PRIORITY_DEFAULT (0) | SCHED_OTHER with priority <= PTHREAD_PRIO_MAX and priority >= PTHREAD_PRIO_MIN |
| contentionscope | PTHREAD_SCOPE_SYSTEM | PTHREAD_SCOPE_SYSTEM |
| inheritsched | PTHREAD_EXPLICIT_SCHED, priority equal PRIORITY_DEFAULT (0) | PTHREAD_EXPLICIT_SCHED or PTHREAD_INHERIT_SCHED |
| schedpolicy | SCHED_OTHER | SCHED_OTHER |
None.
If pthread_attr_init() was not successful, the error condition returned usually indicates one of the following errors. Under some conditions, the value returned could indicate an error other than those listed here.
#define _MULTI_THREADED
#include <pthread.h>
#include <stdio.h>
#include "check.h"
void *threadfunc(void *parm)
{
printf("Thread created using an default attributes\n");
return NULL;
}
int main(int argc, char **argv)
{
pthread_t thread;
int rc=0;
pthread_attr_t pta;
printf("Enter Testcase - %s\n", argv[0]);
printf("Create a thread attributes object\n");
rc = pthread_attr_init(&pta);
checkResults("pthread_attr_init()\n", rc);
printf("Create a thread using the attributes object\n");
rc = pthread_create(&thread, &pta, threadfunc, NULL);
checkResults("pthread_create()\n", rc);
printf("Create a thread using the default attributes\n");
rc = pthread_create(&thread, NULL, threadfunc, NULL);
checkResults("pthread_create()\n", rc);
printf("Destroy thread attributes object\n");
rc = pthread_attr_destroy(&pta);
checkResults("pthread_attr_destroy()\n", rc);
/* sleep() isn't a very robust way to wait for the thread */
sleep(5);
printf("Main completed\n");
return 0;
}
Output
Enter Testcase - QP0WTEST/TAINI0 Create a thread attributes object Create a thread using the attributes object Create a thread using the default attributes Destroy thread attributes object Thread created using an default attributes Thread created using an default attributes Main completed