mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
9 lines
218 B
C
9 lines
218 B
C
|
#include <sys/atomic.h>
|
||
|
|
||
|
/* Global atomic lock declarations */
|
||
|
spinlock_t atomic64_lock = SPIN_LOCK_UNLOCKED;
|
||
|
spinlock_t atomic32_lock = SPIN_LOCK_UNLOCKED;
|
||
|
|
||
|
EXPORT_SYMBOL(atomic64_lock);
|
||
|
EXPORT_SYMBOL(atomic32_lock);
|