logo

What is pthread_t?

#include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <time.h> #include <sys/syscall.h> #define THREAD_NUM 2 void* routine(void* args) { pthread_t th = pthread_self(); printf("%ul\n", th); printf("%d\n", (pid_t) syscall(SYS_gettid)); } int main(int argc, char *argv[]) { pthread_t th[THREAD_NUM]; int i; for (i = 0; i < THREAD_NUM; i++) { if (pthread_create(&th[i], NULL, &routine, NULL) != 0) { perror("Failed to create thread"); } // printf("%ul\n", th[i]); } for (i = 0; i < THREAD_NUM; i++) { if (pthread_join(th[i], NULL) != 0) { perror("Failed to join thread"); } } return 0; }
Course thumb

The C programming language made simple

Courses with this lesson