blob: f0c710b1d1927131c2526dcfc7b96010ecaa45af [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Mutexes: blocking mutual exclusion locks
4 *
5 * started by Ingo Molnar:
6 *
7 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
8 *
9 * This file contains mutex debugging related internal prototypes, for the
10 * !CONFIG_DEBUG_MUTEXES case. Most of them are NOPs:
11 */
12
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000013#define debug_mutex_wake_waiter(lock, waiter) do { } while (0)
14#define debug_mutex_free_waiter(waiter) do { } while (0)
15#define debug_mutex_add_waiter(lock, waiter, ti) do { } while (0)
Olivier Deprez0e641232021-09-23 10:07:05 +020016#define debug_mutex_remove_waiter(lock, waiter, ti) do { } while (0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017#define debug_mutex_unlock(lock) do { } while (0)
18#define debug_mutex_init(lock, name, key) do { } while (0)
19
20static inline void
21debug_mutex_lock_common(struct mutex *lock, struct mutex_waiter *waiter)
22{
23}