The
pthread_attr_get_np()
function is used to get existent thread's attributes.
Most fields of
pthread_attr_t
structure are exact values of attributes provided at thread creation
time (as parameter to
pthread_create(3)
function), except for the stack address.
Value returned as
dst
is supposed to be used in conjunction with
pthread_attr_get*()
functions to retrieve individual values from
pthread_attr_t
structure.
Parameter
dst
should point to allocated memory area big enough to fit this structure.
It is HIGHLY RECOMMENDED to use
pthread_attr_init(3)
function to allocate attribute storage.