.\" $OpenBSD: pthread_set_name_np.3,v 1.8 2019/02/04 18:06:32 jmc Exp $ .\" David Leonard , 1999. Public domain. .Dd $Mdocdate: February 4 2019 $ .Dt PTHREAD_SET_NAME_NP 3 .Os .Sh NAME .Nm pthread_set_name_np , .Nm pthread_get_name_np .Nd set the name of a thread .Sh SYNOPSIS .In pthread.h .In pthread_np.h .Ft void .Fn pthread_set_name_np "pthread_t thread" "const char *name" .Ft void .Fn pthread_get_name_np "pthread_t thread" "char *name" "size_t len" .Sh DESCRIPTION The .Fn pthread_set_name_np function associates .Fa name with .Fa thread . This can be useful for debugging, as the name is displayed in the thread status as displayed when the process receives the .Dv SIGINFO signal. .Pp The string pointed to by .Fa name is copied, and so need not be valid for the life of the thread. .Pp The .Fn pthread_get_name_np function retrieves .Fa name associated with .Fa thread . .Sh SEE ALSO .Xr pthreads 3 .Sh STANDARDS These functions are non-portable and may not be supported with the above semantics on other POSIX systems.