| Server IP : 3.147.158.171 / Your IP : 216.73.216.216 Web Server : Apache/2.4.67 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-2-178.us-east-2.compute.internal 6.1.172-216.329.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 20 06:31:34 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF 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_ */