arasındaki fark Linux çekirdeği bağlantılı liste API'sini anlamaya çalışıyorum.LIST_HEAD_INIT ve INIT_LIST_HEAD
Linux Kernel Linked List göre bunu yerine LIST_HEAD_INIT
kullanmak bu önerilir here (Linux Kernel Program)INIT_LIST_HEAD
tarafından liste başını başlatmak ancak gerekmektedir.
İşte yazdığım bir çalışma kodu, ancak doğru şekilde yapıp yapmadığımı bilmiyorum. Birisi doğru olduğunu doğrulayabilir mi? LIST_HEAD_INIT
listesi için bir başlatıcısı olarak kullanım için uygun bir moda geçirilen pointer adresini döndürür iken, bir struct list head *
alır Yani
#define LIST_HEAD_INIT(name) { &(name), &(name) }
static inline void INIT_LIST_HEAD(struct list_head *list)
{
list->next = list;
list->prev = list;
}
INIT_LIST_HEAD
ve atar:
#include <stdio.h>
#include <stdlib.h>
#include "list.h"
typedef struct edge_attr {
int d;
struct list_head list;
} edge_attributes_t;
typedef struct edge {
int id;
edge_attributes_t *attributes;
} edge_t;
int main() {
int i;
struct list_head *pos;
edge_attributes_t *elem;
edge_t *a = (edge_t*)malloc(sizeof(edge_t));
a->id = 12;
a->attributes = (edge_attributes_t*) malloc(sizeof(edge_attributes_t));
INIT_LIST_HEAD(&a->attributes->list);
for (i=0; i<5; ++i) {
elem = (edge_attributes_t*)malloc(sizeof(edge_attributes_t));
elem->d = i;
list_add(&elem->list, &a->attributes->list);
}
list_for_each(pos, &(a->attributes->list)) {
elem = list_entry(pos, edge_attributes_t, list);
printf("%d \n", elem->d);
}
return 0;
}
veya maby a-> atrributes yalnızca liste başı, liste girişi değil mi? – patseb