pthread_t pthread_self(void);
Le résultat est l'identifiant du thread.
#include <stdio.h> #include <pthread.h> pthread_t Identificateur; Identificateur=pthread_self(); ...