- 论坛徽章:
- 0
|
APUE已经看到线程同步了,但对其范例却很困惑
- Figure 11.12. Simplified locking
- #include <stdlib.h>
- #include <pthread.h>
- #define NHASH 29
- #define HASH(fp) (((unsigned long)fp)%NHASH) //这个有参宏HASH有什么作用?
- struct foo *fh[NHASH];
- pthread_mutex_t hashlock = PTHREAD_MUTEX_INITIALIZER;
- struct foo {
- int f_count; /* protected by hashlock */
- pthread_mutex_t f_lock;
- struct foo *f_next; /* protected by hashlock */
- int f_id;
- /* ... more stuff here ... */
- };
- struct foo *
- foo_alloc(void) /* allocate the object */
- {
- struct foo *fp;
- int idx;
- if ((fp = malloc(sizeof(struct foo))) != NULL) {
- fp->f_count = 1;
- if (pthread_mutex_init(&fp->f_lock, NULL) != 0) {
- free(fp);
- return(NULL);
- }
- idx = HASH(fp);
- pthread_mutex_lock(&hashlock);
- fp->f_next = fh[idx];
- fh[idx] = fp->f_next; //这两句没看明白,书上解释的也不详细,只说了将新结构添加到散列存储桶中
- pthread_mutex_lock(&fp->f_lock);
- pthread_mutex_unlock(&hashlock);
- /* ... continue initialization ... */
- }
- return(fp);
- }
复制代码 |
|