加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hello.c 331 Bytes
一键复制 编辑 原始数据 按行查看 历史
mike xu 提交于 2017-02-09 21:28 . commit elf loader v0.1-alpha
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
#include <sys/types.h>
void *worker(void *arg)
{
printf("%d: hello world!\n", (unsigned long)arg);
}
void main1(void)
{
int i;
pthread_t th[10];
for (i = 0; i < 10; ++i)
pthread_create(&th[i], NULL, worker, (unsigned long)i);
sleep(1);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化