pthread-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3976733
  • 博文数量: 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

2011-10-31 12:37:18

切记pthread_create返回值不是:小于0出错,0正确。

 return value
      upon successful completion, pthread_create() returns zero. otherwise,
      an error number is returned to indicate the error (the errno variable
      is not set).

以前比较傻总这样写:
   if (pthread_create(...) < 0)
   {
     /* error code .... */
   }

正确应该这样写比较合适:
   if (pthread_create(...) != 0)
   {
     /* error code ..., 最好输出errno, strerror(errno) */
   }

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

limsco2011-11-01 22:41:14

额。。。。感觉与线程关系不大,这不只是泛型编程的细节吧!貌似

|
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图