Linux-6.18.2/tools/testing/memblock/linux/mutex.h

14 lines
232 B
C
Raw Normal View History

2025-12-23 20:05:50 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _MUTEX_H
#define _MUTEX_H
#define DEFINE_MUTEX(name) int name
static inline void dummy_mutex_guard(int *name)
{
}
#define guard(mutex) \
dummy_##mutex##_guard
#endif /* _MUTEX_H */