PERFORCE change 146561 for review

Ed Schouten ed at FreeBSD.org
Sun Aug 3 21:27:21 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=146561

Change 146561 by ed at ed_flippo on 2008/08/03 21:26:46

	Silly mistake: don't destroy the mutex we're borrowing when
	deallocating the TTY, but our own internal mutex.

Affected files ...

.. //depot/projects/mpsafetty/sys/kern/tty.c#13 edit

Differences ...

==== //depot/projects/mpsafetty/sys/kern/tty.c#13 (text+ko) ====

@@ -904,7 +904,7 @@
 	cv_destroy(&tp->t_bgwait);
 	cv_destroy(&tp->t_dcdwait);
 
-	mtx_destroy(tp->t_mtx);
+	mtx_destroy(&tp->t_mtxobj);
 	ttydevsw_free(tp);
 	free(tp, M_TTY);
 }


More information about the p4-projects mailing list