rtmutex.c (597473720f4dc69749542bfcfed4a927a43d935e) rtmutex.c (387b14684f94483cbbb72843db406ec9a8d0d6d2)
1// SPDX-License-Identifier: GPL-2.0-only
1/*
2 * RT-Mutexes: simple blocking mutual exclusion locks with PI support
3 *
4 * started by Ingo Molnar and Thomas Gleixner.
5 *
6 * Copyright (C) 2004-2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
7 * Copyright (C) 2005-2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
8 * Copyright (C) 2005 Kihon Technologies Inc., Steven Rostedt
9 * Copyright (C) 2006 Esben Nielsen
10 *
2/*
3 * RT-Mutexes: simple blocking mutual exclusion locks with PI support
4 *
5 * started by Ingo Molnar and Thomas Gleixner.
6 *
7 * Copyright (C) 2004-2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
8 * Copyright (C) 2005-2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
9 * Copyright (C) 2005 Kihon Technologies Inc., Steven Rostedt
10 * Copyright (C) 2006 Esben Nielsen
11 *
11 * See Documentation/locking/rt-mutex-design.txt for details.
12 * See Documentation/locking/rt-mutex-design.rst for details.
12 */
13#include <linux/spinlock.h>
14#include <linux/export.h>
15#include <linux/sched/signal.h>
16#include <linux/sched/rt.h>
17#include <linux/sched/deadline.h>
18#include <linux/sched/wake_q.h>
19#include <linux/sched/debug.h>

--- 1905 unchanged lines hidden ---
13 */
14#include <linux/spinlock.h>
15#include <linux/export.h>
16#include <linux/sched/signal.h>
17#include <linux/sched/rt.h>
18#include <linux/sched/deadline.h>
19#include <linux/sched/wake_q.h>
20#include <linux/sched/debug.h>

--- 1905 unchanged lines hidden ---