Chinaunix首页 | 论坛 | 博客
  • 博客访问: 281871
  • 博文数量: 46
  • 博客积分: 2021
  • 博客等级: 大尉
  • 技术积分: 406
  • 用 户 组: 普通用户
  • 注册时间: 2006-08-03 13:00
文章分类

全部博文(46)

文章存档

2011年(1)

2010年(9)

2009年(2)

2007年(13)

2006年(21)

我的朋友

分类: LINUX

2006-09-15 09:35:08

今天到公司查看昨天晚上程序运行的结果, 发现pthread_create返回错误12 (Cannot allocate memory)。原因是主线程里没有调用pthread_join函数或 在线程函数中没有调用pthread_detach(pthread_self());这样线程没有被回收。写程序测试了一下:

#include
#include
#include

void *func(void* arg)
{

    if (*(int*)arg == 1)
        pthread_detach(pthread_self());
    return NULL;
}

int main(int argc, char* argv[])
{
    int    i = 0;
    int flag = 0;

    if (argc != 3)
    {
        printf("Usage: %s NUM FLAG\n", argv[0]);
        return -1;
    }

    flag = atoi (argv[2]);

    while ( i <  atoi(argv[1]))
    {
        int status;

        i++;
        printf("i= %d\n", i);
        pthread_t id;
        status = pthread_create(&id, NULL, func, &flag);
        if (status != 0 )
        {
            printf("%d %s\n", status, strerror(status));
            return -1;
        }
    }
    return 0;
}

gcc pthread_create_test.c -o pthread_create_test -lpthread

阅读(3596) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2008-11-18 14:17:52

谢谢,非常有帮助,windows下的线程就不需要. scq.