| Server IP : 104.21.25.180 / Your IP : 104.23.197.122 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/systemtap/runtime/linux/ |
Upload File : |
/* -*- linux-c -*-
* Map list abstractions
* Copyright (C) 2012 Red Hat Inc.
*
* This file is part of systemtap, and is free software. You can
* redistribute it and/or modify it under the terms of the GNU General
* Public License (GPL); either version 2, or (at your option) any
* later version.
*/
#ifndef _LINUX_MAP_LIST_H_
#define _LINUX_MAP_LIST_H_
#include <linux/list.h>
#define mlist_head list_head
#define mlist_next list_next
#define mlist_prev list_prev
#define INIT_MLIST_HEAD INIT_LIST_HEAD
#define mlist_add list_add
#define mlist_del list_del
#define mlist_empty list_empty
#define mlist_entry list_entry
#define mlist_move_tail list_move_tail
#define mlist_for_each_safe list_for_each_safe
static inline struct list_head* list_next(struct list_head* head)
{
return head->next;
}
static inline struct list_head* list_prev(struct list_head* head)
{
return head->prev;
}
#define mhlist_head hlist_head
#define mhlist_node hlist_node
#define INIT_MHLIST_HEAD INIT_HLIST_HEAD
#define INIT_MHLIST_NODE INIT_HLIST_NODE
#define mhlist_add_head hlist_add_head
#define mhlist_del_init hlist_del_init
#define mhlist_for_each_entry stap_hlist_for_each_entry
#endif /* _LINUX_MAP_LIST_H_ */