seq_lock.h 612 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __SND_SEQ_LOCK_H
  3. #define __SND_SEQ_LOCK_H
  4. #include <linux/sched.h>
  5. typedef atomic_t snd_use_lock_t;
  6. /* initialize lock */
  7. #define snd_use_lock_init(lockp) atomic_set(lockp, 0)
  8. /* increment lock */
  9. #define snd_use_lock_use(lockp) atomic_inc(lockp)
  10. /* release lock */
  11. #define snd_use_lock_free(lockp) atomic_dec(lockp)
  12. /* wait until all locks are released */
  13. void snd_use_lock_sync_helper(snd_use_lock_t *lock, const char *file, int line);
  14. #define snd_use_lock_sync(lockp) snd_use_lock_sync_helper(lockp, __BASE_FILE__, __LINE__)
  15. #endif /* __SND_SEQ_LOCK_H */