- 论坛徽章:
- 0
|
本帖最后由 雨过白鹭洲 于 2011-09-28 12:36 编辑
回复 3# nbaloverme
Sorry, 是我没看仔细。。
- void* queue_new(uint32_t size) {
- queue *q = NULL;
- q = (queue*)malloc(sizeof(queue));
- passert(q);
- q->head = NULL;
- q->tail = &(q->head);
- q->elements = 0;
- q->size = 0;
- q->maxsize = size;
- q->freewaiting = 0;
- q->fullwaiting = 0;
- if (size) {
- eassert(pthread_cond_init(&(q->waitfull),NULL)==0);
- }
- eassert(pthread_cond_init(&(q->waitfree),NULL)==0);
- eassert(pthread_mutex_init(&(q->lock),NULL)==0);
- fprintf(stderr,"queue address is %p\n",q);
- return (void*)q;
- }
- static void *myqueue;
- fprintf(stderr, "queue address: %p\n",my queue);
- myqueue = (void *)queue_new(0); // 我怀疑这里没找到queue_new()函数的原型声明,编译器将函数的返回值默认为int;
- // 此时已经发生了截断,从64位指针截断为32位的int。然后你再将int强制转换为(void*),于是高32位全部置为FF
- fprintf(stderr, "queue address: %p\n", myqueue);
复制代码 楼主你试下是不是这个原因
另外太多的强制转换,不是好的编程习惯,因为这样会把许多编译器警告屏蔽,导致非常微妙的错误。 |
|