diff options
author | thompsa <thompsa@FreeBSD.org> | 2008-05-21 23:04:10 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2008-05-21 23:04:10 +0000 |
commit | 01b0c45f12c09e73a4706595556e44c81b3e938f (patch) | |
tree | a7d926d012419f95919fa0429436b66b2674fd9b | |
parent | 260ba669286a28ae4aa0bc4ef49ef5848bc4ea7f (diff) | |
download | FreeBSD-src-01b0c45f12c09e73a4706595556e44c81b3e938f.zip FreeBSD-src-01b0c45f12c09e73a4706595556e44c81b3e938f.tar.gz |
Giant is no longer required and can not be held over kproc_exit().
-rw-r--r-- | sys/dev/sound/midi/sequencer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/sound/midi/sequencer.c b/sys/dev/sound/midi/sequencer.c index f30c5b1..9119343 100644 --- a/sys/dev/sound/midi/sequencer.c +++ b/sys/dev/sound/midi/sequencer.c @@ -459,7 +459,6 @@ restart: done: cv_broadcast(&scp->th_cv); mtx_unlock(&scp->seq_lock); - mtx_lock(&Giant); SEQ_DEBUG(2, printf("seq_eventthread finished\n")); kproc_exit(0); } |