this answerとRobert Loveの "Linux Kernel Development"を読んだ後、clone()
システムコールで、Linuxのプロセスとスレッドが(ほとんど)カーネルと区別できないことがわかりました。それらの間にはいくつかの調整があります(引用されたSOの質問では、「より多くの共有」または「少ない共有」として議論されています)。Linuxのプロセスとスレッドの区別
私は最近、いくつかのPOSIXスレッドを含むプログラムに取り組み、この前提を実験することに決めました。 2つのスレッドを作成するプロセスでは、すべてのスレッドはpthread_self()
、ただしで返される一意の値を取得します。getpid()
ではありません。
I作成したサンプルプログラムは、以下:
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <pthread.h>
void* threadMethod(void* arg)
{
int intArg = (int) *((int*) arg);
int32_t pid = getpid();
uint64_t pti = pthread_self();
printf("[Thread %d] getpid() = %d\n", intArg, pid);
printf("[Thread %d] pthread_self() = %lu\n", intArg, pti);
}
int main()
{
pthread_t threads[2];
int thread1 = 1;
if ((pthread_create(&threads[0], NULL, threadMethod, (void*) &thread1))
!= 0)
{
fprintf(stderr, "pthread_create: error\n");
exit(EXIT_FAILURE);
}
int thread2 = 2;
if ((pthread_create(&threads[1], NULL, threadMethod, (void*) &thread2))
!= 0)
{
fprintf(stderr, "pthread_create: error\n");
exit(EXIT_FAILURE);
}
int32_t pid = getpid();
uint64_t pti = pthread_self();
printf("[Process] getpid() = %d\n", pid);
printf("[Process] pthread_self() = %lu\n", pti);
if ((pthread_join(threads[0], NULL)) != 0)
{
fprintf(stderr, "Could not join thread 1\n");
exit(EXIT_FAILURE);
}
if ((pthread_join(threads[1], NULL)) != 0)
{
fprintf(stderr, "Could not join thread 2\n");
exit(EXIT_FAILURE);
}
return 0;
}
(これは、64ビットのFedoraの[gcc -pthread -o thread_test thread_test.c
】コンパイルされた;起因<bits/pthreadtypes.h>
から供給pthread_t
ために使用される64ビットのタイプに、コードがマイナー必要とします32ビット版でコンパイルする変更)
次のように私が手出力は次のようになります。scheduを使用することにより
[[email protected] ~]$ ./thread_test
[Process] getpid() = 28549
[Process] pthread_self() = 140050170017568
[Thread 2] getpid() = 28549
[Thread 2] pthread_self() = 140050161620736
[Thread 1] getpid() = 28549
[Thread 1] pthread_self() = 140050170013440
[[email protected] ~]$
LER gdb
にロック、私は、はちょうどプロセスを示している、ので、私はtop
が言うキャプチャすることができます生きているプログラムとそのスレッドを維持することができます:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
28602 bean 20 0 15272 1112 820 R 0.4 0.0 0:00.63 top
2036 bean 20 0 108m 1868 1412 S 0.0 0.0 0:00.11 bash
28547 bean 20 0 231m 16m 7676 S 0.0 0.4 0:01.56 gdb
28549 bean 20 0 22688 340 248 t 0.0 0.0 0:00.26 thread_test
28561 bean 20 0 107m 1712 1356 S 0.0 0.0 0:00.07 bash
とスレッドを示し、こう述べています。
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
28617 bean 20 0 15272 1116 820 R 47.2 0.0 0:00.08 top
2036 bean 20 0 108m 1868 1412 S 0.0 0.0 0:00.11 bash
28547 bean 20 0 231m 16m 7676 S 0.0 0.4 0:01.56 gdb
28549 bean 20 0 22688 340 248 t 0.0 0.0 0:00.26 thread_test
28552 bean 20 0 22688 340 248 t 0.0 0.0 0:00.00 thread_test
28553 bean 20 0 22688 340 248 t 0.0 0.0 0:00.00 thread_test
28561 bean 20 0 107m 1860 1432 S 0.0 0.0 0:00.08 bash
プログラムやカーネルには、プロセスとは異なりスレッドを定義する明確な方法があることは明らかです。各スレッドはtop
に従って独自のPIDを持っています - なぜですか?
'clone()'は、Linuxが両方のスレッドと 'fork()'をどのように実装しているかです。重要なことは、PIDと話すことで、知る必要があるすべての人にその信号を伝えることです。カーネルがスレッドに追加のIDを割り当てる場合、それはあなたのビジネスのどれでもなく、プロセスとの会話方法にも影響しません。 –
良い[リンク](http://opensourceforgeeks.blogspot.in/2014/03/processes-and-threads-in-linux.html)。 –
"* Linuxのプロセスとスレッドは、カーネルと(ほとんど)区別できません。プロセスとスレッドの両方に当てはまるLinuxカーネルの仕組みについては、ほとんど何も言えません。 VMのビューを所有していますか?プロセスのみ。スケジュールすることはできますか?スレッドのみ。ファイル記述子テーブルを持っていますか?プロセスのみ。優先順位はありますか?スレッドのみ。そして、ラインの下で。 –