c:c_threads:identify_different_threads
This is an old revision of the document!
C - C++ Threads - Identify different threads
Unique ids are given to threads.
#include <iostream> #include <string> #include <thread> #include <functional> void Count() { for (int i = 0; i < 100; i++) { std::cout << "counter at: " << i << std::endl; } } int main() { std::thread t1(Count); // Get the ID of the t1 thread. std::thread::id t1id = t1.get_id(); std::cout << t1id << std::endl; // Get the ID of the MAIN Thread. std::thread::id mainid = std::this_thread::get_id(); std::cout << mainid << std::endl; t1.detach(); return 0; }
c/c_threads/identify_different_threads.1614961701.txt.gz · Last modified: 2021/03/05 16:28 by peter