Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pthread_self(3c) [opensolaris man page]

pthread_self(3C)					   Standard C Library Functions 					  pthread_self(3C)

NAME
pthread_self - get calling thread's ID SYNOPSIS
cc -mt [ flag... ] file... -lpthread [ library... ] #include <pthread.h> pthread_t pthread_self(void); DESCRIPTION
The pthread_self() function returns the thread ID of the calling thread. ERRORS
No errors are defined. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
pthread_create(3C), pthread_equal(3C), attributes(5), standards(5) SunOS 5.11 23 Mar 2005 pthread_self(3C)

Check Out this Related Man Page

pthread_self(3) 					     Library Functions Manual						   pthread_self(3)

NAME
pthread_self - Obtains the identifier of the calling thread. LIBRARY
DECthreads POSIX 1003.1c Library (libpthread.so) SYNOPSIS
#include <pthread.h> pthread_t pthread_self(void); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: IEEE Std 1003.1c-1995, POSIX System Application Program Interface PARAMETERS
None DESCRIPTION
This routine returns the address of the calling thread's own thread identifier. For example, you can use this thread object to obtain the calling thread's own sequence number. To do so, pass the return value from this routine in a call to the pthread_getsequence_np(3) routine, as follows: unsigned long this_thread_nbr; . . . this_thread_nbr = pthread_getsequence_np( pthread_self( ) ); . . . The return value from the pthread_self(3) routine becomes meaningless after the calling thread is destroyed. RETURN VALUES
Returns the address of the calling thread's own thread object. ERRORS
None RELATED INFORMATION
Functions: pthread_cancel(3), pthread_create(3), pthread_detach(3), pthread_exit(3), pthread_getsequence_np(3), pthread_join(3), pthread_kill(3), pthread_sigmask(3) Manuals: Guide to DECthreads and Programmer's Guide delim off pthread_self(3)
Man Page