pthread_rad_detach(3) — Subroutines
NAME
pthread_rad_detach − Detach a thread from its Resource Affinity Domain (libpthread library)
SYNOPSIS
#include <numa.h>
int pthread_rad_detach(
pthread_t thread );
PARAMETERS
thread
Identifies the thread to detach from its current RAD
DESCRIPTION
The pthread_rad_detach() function detaches the thread specified by the thread argument from its current Resource Affinity Domain. The thread is free to be scheduled in any RAD available to the process.
RETURN VALUES
0Success. In this case, the specified thread is detached from its RAD.
Integer value
In this case, the integer value indicates the type of error. Possible errors are as follows:
[ESRCH]
The thread specified in thread does not exist.
ERRORS
None.
SEE ALSO
Functions: nloc(3), pthread_rad_attach(3), pthread_rad_bind(3)