lockdep.h 217 B

1234567891011
  1. #ifndef _LINUX_LOCKDEP_H
  2. #define _LINUX_LOCKDEP_H
  3. struct lock_class_key {
  4. unsigned int a;
  5. };
  6. static inline void lockdep_set_class(spinlock_t *lock,
  7. struct lock_class_key *key)
  8. {
  9. }
  10. #endif /* _LINUX_LOCKDEP_H */