summaryrefslogtreecommitdiff
path: root/tools/lib/lockdep/tests/ABBA.c
blob: 07f0e29d548595ccb29413f08071bc79ab4a076e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <liblockdep/mutex.h>
#include "common.h"

void main(void)
{
	pthread_mutex_t a, b;

	pthread_mutex_init(&a, NULL);
	pthread_mutex_init(&b, NULL);

	LOCK_UNLOCK_2(a, b);
	LOCK_UNLOCK_2(b, a);
}
14:29:30 -0800 commit1f369d1655c1de415a186c6ce9004e40ca790989 (patch) tree71a9a75378c49301d321e45cacd54852a83b4d13 /sound/pci parent7fe654dca20892f37226c31bdd2d5b932f8d843a (diff)parentaf677166cf63c179dc2485053166e02c4aea01eb (diff)
Merge tag 'sound-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
Pull sound fixes from Takashi Iwai: "Here are some last-minute fixes: two fixes for races in ALSA sequencer queue spotted by syzkaller, a revert for a regression of LINE6 driver (since 4.9), and a trivial new codec ID addition for Nvidia HDMI" * tag 'sound-4.10' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: ALSA: hda - adding a new NV HDMI/DP codec ID in the driver ALSA: seq: Fix race at creating a queue Revert "ALSA: line6: Only determine control port properties if needed" ALSA: seq: Don't handle loop timeout at snd_seq_pool_done()
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/patch_hdmi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c