摘要: #include <stdio.h> #include <sys/syscall.h> #include <unistd.h> #include <pthread.h> void *printThreadId(void *arg) { pid_t tid = syscall(SYS_gettid); 阅读全文
posted @ 2023-12-19 14:21 He_LiangLiang 阅读(150) 评论(0) 推荐(0) 编辑