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_equal(3C)					   Standard C Library Functions 					 pthread_equal(3C)

NAME
pthread_equal - compare thread IDs SYNOPSIS
cc -mt [ flag... ] file... -lpthread [ library... ] #include <pthread.h> int pthread_equal(pthread_t t1, pthread_t t2); DESCRIPTION
The pthread_equal() function compares the thread IDs t1 and t2. RETURN VALUES
The pthread_equal() function returns a non-zero value if t1 and t2 are equal. Otherwise, 0 is returned. If t1 or t2 is an invalid thread ID, the behavior is undefined. 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_self(3C), attributes(5), standards(5) NOTES
Solaris thread IDs do not require an equivalent function because the thread_t structure is an unsigned int. SunOS 5.11 23 Mar 2005 pthread_equal(3C)
Man Page