xref: /openbsd-src/sys/dev/pci/drm/include/linux/srcu.h (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
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