- 论坛徽章:
- 0
|
本帖最后由 xiantaozhaowei 于 2011-02-23 13:18 编辑
- #Include <stdio.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <pthread.h>
- struct foo {
- int a, b, c, d;
- };
- void
- printfoo(const char *s, const struct foo *fp)
- {
- printf(s);
- printf(" structure at 0x%x\n", (unsigned)fp);
- printf(" foo.a = %d\n", fp->a);
- printf(" foo.b = %d\n", fp->b);
- printf(" foo.c = %d\n", fp->c);
- printf(" foo.d = %d\n", fp->d);
- }
- void *
- thr_fn1(void *arg)
- {
- struct foo foo = {1, 2, 3, 4};
- printfoo("thread 1:\n", &foo);
- pthread_exit((void *)&foo);
- }
- void *
- thr_fn2(void *arg)
- {
- printf("thread 2: ID is %d\n", pthread_self());
- pthread_exit((void *)0);
- }
- int
- main(void)
- {
- int err;
- pthread_t tid1, tid2;
- struct foo*fp;
- err = pthread_create(&tid1, NULL, thr_fn1, NULL);
- if (err != 0)
- printf("can't create thread 1: %s\n", strerror(err));
- err = pthread_join(tid1, (void *)&fp);
- /*
- err = pthread_join(tid1, (void **)&fp);
- 和原型不一样啊
- int pthread_join(pthread_t th, void **thread_return);
- */
- if (err != 0)
- printf("can't join with thread 1: %s\n", strerror(err));
- sleep(1);
- printf("parent starting second thread\n");
- err = pthread_create(&tid2, NULL, thr_fn2, NULL);
- if (err != 0)
- printf("can't create thread 2: %s\n", strerror(err));
- sleep(1);
- printfoo("parent:\n", fp);
- exit(0);
- }
复制代码 SYNOPSIS
#include <pthread.h>
int pthread_join(pthread_t th, void **thread_return); |
|