NAME
pthread_self - 호출하는 쓰레드의 ID 획득
SYNOPSIS
#include <pthread.h>
pthread_t pthread_self(void);
컴파일 및 링크시 -pthread 옵션을 추가해야 함.
DESCRIPTION
The pthread_self() function returns the ID of the calling thread. This is the same value that is returned in
*thread in the pthread_create(3) call that created this thread.
RETURN VALUE
이 함수는 항상 성공하며, 호출하는 쓰레드의 ID를 반환한다.