Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4006035
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

分类: C/C++

2010-08-27 10:10:51

做了一些简单测试,想了解操作系统一个进程中到底可以创建多少个线程。
最后发现和:stack size              (kbytes, -s) 4096 这个参数有关,可以用ulimit -a查看,修改用ulimit -s

我测试了Linux/HPUX 11.23 IA64两个环境的,测试结果基本差不多。

进程中可以自己设置线程堆栈大小:
  pthread_t     thrid;
  pthread_attr_t attr;

  pthread_attr_init(&attr);
  pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_DETACHED);
  pthread_attr_setstacksize(&attr,4*1024);
 
  for (i=1; i>0; i++)
  {
    if (pthread_create(&thrid, &attr, child_loop, (void *)i) != 0)
    {
      printf("create thread count:%d err:%d-%s\n", i, errno, strerror(errno));
      break;
    }
  }

HPUX最后输出:
....
248 thr#249 loop...
create thread count:249 err:12-Not enough space

int nthr = 0;

static void *child_loop(void *argv)
{
  int i = (int)argv;

  while (1)
  {
    printf("%d thr#%u loop...\n", i, (uint32_t)pthread_self());
    sleep(6);
  }

  return (NULL);
}

int main(int argc, char **argv)
{
  int i;
  pthread_t thrid;
  
  for (i=1; i>0; i++)
  {
    if (pthread_create(&thrid, NULL, child_loop, (void *)i) != 0)
    {
      printf("create thread count:%d err:%s\n", i, strerror(errno));
      break;
    }
  }

  return (-1);
}


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

chinaunix网友2010-08-29 15:53:59

Download More than 1000 free IT eBooks: http://free-ebooks.appspot.com