Linux - 線程特性舉例

這裏主要演示線程的以下幾個特性 線程共享同一地址空間(全局變量,堆,棧) 線程退出引起進程退出 多線程充分利用多核CPU資源 同組線程共用同一地址空間 全局變量 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <pthread.h> //1.共享全局區資源 int g_count = 0; void* Thre
相關文章
相關標籤/搜索