I want to enumerate threads of specific process using /proc/[pid]/task/.but in proc man pages, it said:
In a multithreaded process, the contents of the /proc/[pid]/task directory are not available if the main thread has already terminated (typically by calling pthread_exit(3)).
then I write some code,
#include <pthread.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
void* PrintHello(void* data){
pthread_t tid = (pthread_t)data;
int rc;
rc = pthread_join(tid, NULL);
if(rc){
exit(1);
} else{
printf("Hello from new thread %d - got %d\n", pthread_self(), data);
sleep(180);
pthread_exit(NULL);
}
}
int main(int argc, char* argv[]){
int rc;
pthread_t thread_id;
thread_t tid;
tid = pthread_self();
printf("\nmain thread(%d) ", tid);
rc = pthread_create(&thread_id, NULL, PrintHello, (void*)tid);
if(rc){
printf("\n ERROR: return code from pthread_create is %d \n", rc);
exit(1);
}
sleep(1);
printf("\n Created new thread (%d) ... \n", thread_id);
pthread_exit(NULL);
}
after the main thread call pthread_exit(), it turn to zombie. and the /proc/[pid]/task directory remains, but /proc/[pid]/maps is empty.
$ ./a.out &
main thread(164759360)
Created new thread (164755200) ...
Hello from new thread 164755200 - got 164759360
$ ps auwx | grep a.out
spyder 5408 0.0 0.0 0 0 pts/0 Zl+ 10:27 0:00 [a.out] <defunct>
spyder 5412 0.0 0.0 109400 896 pts/1 S+ 10:27 0:00 grep --color=auto a.out
$ ls /proc/5408/task/
5408 5409
$ cat /proc/5408/maps
$ cat /proc/5408/status
Name: a.out
State: Z (zombie)
Tgid: 5408
Pid: 5408
....
$ cat /proc/5409/maps
00400000-00401000 r-xp 00000000 fd:02 2752690 /home/spyder/a.out
00600000-00601000 rw-p 00000000 fd:02 2752690 /home/spyder/a.out
018cb000-018ec000 rw-p 00000000 00:00 0 [heap]
3dcf000000-3dcf020000 r-xp 00000000 fd:01 139203 /usr/lib64/ld-2.15.so
3dcf21f000-3dcf220000 r--p 0001f000 fd:01 139203 /usr/lib64/ld-2.15.so
....
Something wrong?
taskandmapswould still be available, but consider yourself fortunate that at leasttaskexists. And don't rely on this working on older kernels since it probably doesn't... – R.. Jun 21 '12 at 2:43