"[PATCH] Fix leaks on /proc/{*/sched,sched_debug,timer_list,timer_stats}" and
[mmotm.git] / include / linux / rcu_types.h
blobfd3570d0e6c1f5ccc380f4a17f2a3fc11fbfcda6
1 #ifndef __LINUX_RCU_TYPES_H
2 #define __LINUX_RCU_TYPES_H
4 #ifdef __KERNEL__
6 /**
7 * struct rcu_head - callback structure for use with RCU
8 * @next: next update requests in a list
9 * @func: actual update function to call after the grace period.
11 struct rcu_head {
12 struct rcu_head *next;
13 void (*func)(struct rcu_head *head);
16 #endif
18 #endif