ROCK YOUR WORLD!rock.blog.chinaunix.net
shinyguo_s
全部博文(42)
2013年(1)
2011年(9)
2010年(23)
2009年(9)
yean1002
nanzhang
touareg
c2267238
sj199122
峤楠
wyt8181
13478378
viqnrbig
ighack
分类: LINUX
2010-08-17 16:08:07
#include <stdio.h> #include <pthread.h> #include <stdlib.h> void *fun(void *arg) { int i ; for (i=0; i<5; i++) { printf("hello%d\n", i); } return NULL; } int main() { pthread_t thread; thread = pthread_create(&thread, NULL, &fun, NULL); if (thread != 0) { printf("error"); exit(1); } pthread_join(thread, NULL); return 0; }
thread = pthread_create(&thread, NULL, &fun, NULL);
上一篇:dgramclnt没有反应
下一篇:[原]fedora 13 改变MAC地址 上网
登录 注册