mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
40 lines
941 B
C
40 lines
941 B
C
#ifndef _SPL_LIST_H
|
|
#define _SPL_LIST_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
typedef struct list_node {
|
|
struct list_node *list_next;
|
|
struct list_node *list_prev;
|
|
} list_node_t;
|
|
|
|
typedef struct list {
|
|
size_t list_size;
|
|
size_t list_offset;
|
|
struct list_node list_head;
|
|
} list_t;
|
|
|
|
void list_create(list_t *, size_t, size_t);
|
|
void list_destroy(list_t *);
|
|
|
|
void list_insert_after(list_t *, void *, void *);
|
|
void list_insert_before(list_t *, void *, void *);
|
|
void list_insert_head(list_t *, void *);
|
|
void list_insert_tail(list_t *, void *);
|
|
void list_remove(list_t *, void *);
|
|
void *list_remove_head(list_t *);
|
|
void *list_remove_tail(list_t *);
|
|
|
|
void *list_head(list_t *);
|
|
void *list_tail(list_t *);
|
|
void *list_next(list_t *, void *);
|
|
void *list_prev(list_t *, void *);
|
|
int list_is_empty(list_t *);
|
|
|
|
void list_link_init(list_node_t *);
|
|
void list_link_replace(list_node_t *, list_node_t *);
|
|
|
|
int list_link_active(list_node_t *);
|
|
|
|
#endif /* SPL_LIST_H */
|