加入收藏 | 设为首页 | 会员中心 | 我要投稿 开发网_开封站长网 (http://www.0378zz.com/)- 科技、AI行业应用、媒体智能、低代码、办公协同!
当前位置: 首页 > 教程 > 正文

处理使用pthread_create函数造成的内存泄露

发布时间:2021-12-18 17:51:12 所属栏目:教程 来源:互联网
导读:首先来看一段程序: //test1.cc #include iostream #include pthread.h #include unistd.h #include stdio.h using namespace std; const int MAX_THREADS = 10000; void* thread1(void *param) { char buff[1024] = {}; cout I am ok buff endl; } int mai

首先来看一段程序:
 
//test1.cc   
#include <iostream>   
#include <pthread.h>   
#include <unistd.h>   
#include <stdio.h>   
using namespace std;  
const int MAX_THREADS = 10000;  
  
void* thread1(void *param)  
{  
    char buff[1024] = {''};  
    cout << "I am ok" << buff << endl;  
}  
  
int main()  
{  
    pthread_t pid[MAX_THREADS];  
    for(int i = 0; i < MAX_THREADS; i++)  
    {  
    pthread_create(&pid[i], NULL, thread1, NULL);  
    sleep(1);  
    }  
  
    return 0;  
}  
程序刚开始运行时内存截图:
 
 
 
 
程序运行一段时间后内存截图:
 
 
 
 
从上面两个截图中比较会发现,程序test1使用的内存越来越多,到底是什么原因造成的内存泄露呢?
 
因为在默认情况下通过pthread_create函数创建的线程是非分离属性的,由pthread_create函数的第二个参数决定,在非分离的情况下,当一个线程结束的时候,它所占用的系统资源并没有完全真正的释放,也没有真正终止。只有当pthread_join函数返回时,该线程才会释放自己的资源。而在分离属性的情况下,一个线程结束会立即释放它所占用的资源。
 
 

(编辑:开发网_开封站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读