1 /* Public domain. */ 2 3 #ifndef _LINUX_SRCU_H 4 #define _LINUX_SRCU_H 5 6 #define init_srcu_struct(x) 7 #define cleanup_srcu_struct(x) 8 9 #define srcu_read_lock(x) 0 10 #define srcu_read_unlock(x, y) 11 12 #define synchronize_srcu_expedited(x) 13 14 #endif 15