Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pid for new thread

Tags:

c

linux

pthreads

I have a quick question about new thread created by pthread_create():

When I print the pid (get from getpid()) of main thread and the child thread, they are the same while when I using htop linux utility to show pid, they are different. Can any one explain this to me?? Thanks!!

kai@kai-T420s:~/LPI$ ./pthr_create
--------------------------------------
main thread: pid: 4845, ppid: 3335
child thread: pid: 4845, ppid: 3335

htop shows: Screenshot of the htop application showing a list of processes.

like image 708
kai Avatar asked May 10 '12 23:05

kai


2 Answers

Linux implements pthreads() as Light-Weight-Processes, therefor they get a PID assigned.

Further information can be found at http://www.linuxforu.com/2011/08/light-weight-processes-dissecting-linux-threads/

there is also an example how to get the LWP-Pid for your thread.

#include <stdio.h>
#include <syscall.h>
#include <pthread.h>

int main()
{
     pthread_t tid = pthread_self();
     int sid = syscall(SYS_gettid);
     printf("LWP id is %d\n", sid);
     printf("POSIX thread id is %d\n", tid);
     return 0;
}
like image 87
dwalter Avatar answered Oct 17 '22 06:10

dwalter


Threads have both a process ID, returned from the getpid() syscall, and a thread ID, returned by gettid(). For the thread executing under main(), these will be identical. I don't know off hand which one htop is reporting, you should check the docs.

like image 42
Andy Ross Avatar answered Oct 17 '22 06:10

Andy Ross