Я пишу программу, в которой я хочу создать несколько процессов и несколько потоков для каждого из этих процессов.Короче говоря, моя программа создает несколько процессов и несколько потоков для каждого процесса.
Это краткий фрагмент кода:
void NormalityComponent::newThread(int thread_id){
std::cout << "New Thread [" << thread_id +1 << "] created in Component [" << name_component << "] with id " << std::this_thread::get_id() << std::endl;
timeSimulation();
std::cout << "Thread [" << thread_id +1 << "] in [" << name_component << "] with id " << std::this_thread::get_id() << " ends its simulation" << std::endl;
}
void NormalityComponent::timeSimulation(){
for (int i = 0; i < time_factor * TEMPORAL_PARAMETER; i++);
}
void NormalityComponent::startAnalysisMode3(){
//creation of a new process to simulate the Normality Component Analysis and a thread for each Instance.
pid_t pid = fork();
if (pid == 0){
//Child Process
std::cout << "New Normality Component ["<< name_component <<"] created with id " << getpid() << std::endl;
//Creation of instances
for(int i = 0; i < number_instances;i++){
v_threads.push_back(std::thread(&NormalityComponent::newThread,this, i));
std::this_thread::sleep_for (std::chrono::milliseconds(100));
}
std::for_each(v_threads.begin(), v_threads.end(), std::mem_fn(&std::thread::join));
kill(getpid(), SIGTERM); //it ends the process when the threads finish.
}
}
, и это фрагмент вывода:
New Thread [1] created in Component [Velocity] with id 140236340983552
New Thread [1] created in Component [FaceRecognition] with id 140236340983552
New Thread [1] created in Component [Trajectories] with id 140236340983552
New Thread [2] created in Component [Velocity] with id 140236332590848
New Thread [2] created in Component [Trajectories] with id 140236332590848
New Thread [2] created in Component [FaceRecognition] with id 140236332590848
Могут ли потоки из разных процессов иметь одинаковый идентификатор?Странно, идентификатор каждого потока должен быть уникальным, верно?