- 论坛徽章:
- 0
|
本帖最后由 juffun 于 2010-07-13 10:28 编辑
APUE在讲多线程里面有:
需要确保分配的键并不会由于在初始化阶段的竞争而发生变动.…… 有些线程可能看到某个键值,而另一个线程看到的是另一个键值 ……
我用如下的代码试验:- #include <fcntl.h>
- #include <pthread.h>
- #include <stdlib.h>
- pthread_cond_t qready;
- pthread_mutex_t qlock;
- pthread_key_t key;
- void *
- thr_fn1(void *arg)
- {
- pthread_key_create(&key, NULL);
- int *b = &key;
- printf("Thr1: &key: %x,key: %d, b: %x, *b: %d\n",&key, key, b, *b);
- return (void *)0;
- }
- void *
- thr_fn2(void *arg)
- {
- sleep(1);
- pthread_key_create(&key, NULL);
- int *b = &key;
- printf("Thr2: &key: %x,key: %d, b: %x, *b: %d\n",&key, key, b, *b);
- return (void *)0;
- }
- int
- main()
- {
- int err;
- pthread_t tid, tid1;
- int *b = &key;
- err = pthread_create(&tid, NULL, thr_fn1, NULL);
- if(err != 0)
- printf("create thread error\n");
- err = pthread_create(&tid1, NULL, thr_fn2, NULL);
- if(err != 0)
- printf("create thread error\n");
- sleep(3);
- printf("Main: &key: %x,key: %d, b: %x, *b: %d\n",&key, key, b, *b);
- getchar();
- return 0;
- }
复制代码 得到如下的输出:
Thr1: &key: 8049948,key: 0, b: 8049948, *b: 0
Thr2: &key: 8049948,key: 1, b: 8049948, *b: 1
Main: &key: 8049948,key: 1, b: 8049948, *b: 1
由于竞争,两个线程看到的键值确实不一样,但为什么会出现同样的地址却得到地址里面的值不一样,一个是0,一个是1呢? |
|