博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pthread使用
阅读量:6093 次
发布时间:2019-06-20

本文共 737 字,大约阅读时间需要 2 分钟。

https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Multithreading/CreatingThreads/CreatingThreads.html

#include 
#include 
 
void* PosixThreadMainRoutine(void* data)
{
// Do some work here.
 
return NULL;
}
 
void LaunchThread()
{
// Create the thread using POSIX routines.
pthread_attr_t  attr;
pthread_t       posixThreadID;
int             returnVal;
 
returnVal = pthread_attr_init(&attr);
assert(!returnVal);
returnVal = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
assert(!returnVal);
 
int     threadError = pthread_create(&posixThreadID, &attr, &PosixThreadMainRoutine, NULL);
 
returnVal = pthread_attr_destroy(&attr);
assert(!returnVal);
if (threadError != 0)
{
// Report an error.
}
}

转载地址:http://isgwa.baihongyu.com/

你可能感兴趣的文章
Ubuntu学习 mv
查看>>
linux基础
查看>>
详解JS对象
查看>>
elasticsearch 前缀匹配
查看>>
precopy copy split解释
查看>>
全球最快计算机Roadrunner
查看>>
centos7下vsftpd配置
查看>>
实现一个列表变成字典的转换
查看>>
Linux学习之CentOS(三十四)--配置域主DNS服务器
查看>>
部分xcode插件可能有新版本
查看>>
Provisioning Services 7.6 入门到精通系列之一:PVS前期规划
查看>>
centos6.2 LNMP 环境安装(yum)
查看>>
python 3 用户输入和格式化输出
查看>>
9.1磁盘
查看>>
cisco syslog 总结
查看>>
Win8Metro(C#)数字图像处理--2.4图像颜色聚类
查看>>
iftop笔记
查看>>
页面效果,给手机发送验证码
查看>>
python代码规范
查看>>
自动化运维工具Ansible实战(一)安装部署
查看>>