THR_SELF(3C) Standard C Library Functions THR_SELF(3C)

NAME


thr_self - get calling thread's ID

SYNOPSIS


cc -mt [ flag... ] file...[ library... ]
#include <thread.h>

thread_t thr_self(void);


typedef(unsigned int thread_t);


DESCRIPTION


thr_self() returns the thread ID of the calling thread.

ERRORS


No errors are defined.

ATTRIBUTES


See attributes(7) for descriptions of the following attributes:


+---------------+-----------------+
|ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+---------------+-----------------+
|MT-Level | MT-Safe |
+---------------+-----------------+

SEE ALSO


thr_create(3C), attributes(7), standards(7)

May 9, 1998 THR_SELF(3C)