Date: Thu, 21 May 2009 04:44:21 +0000 (UTC) From: Kip Macy <kmacy@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r192520 - user/kmacy/releng_7_2_fcs/sys/sys Message-ID: <200905210444.n4L4iLXI054859@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kmacy Date: Thu May 21 04:44:21 2009 New Revision: 192520 URL: http://svn.freebsd.org/changeset/base/192520 Log: remove old style lpo definition Modified: user/kmacy/releng_7_2_fcs/sys/sys/_lock.h Modified: user/kmacy/releng_7_2_fcs/sys/sys/_lock.h ============================================================================== --- user/kmacy/releng_7_2_fcs/sys/sys/_lock.h Thu May 21 04:36:49 2009 (r192519) +++ user/kmacy/releng_7_2_fcs/sys/sys/_lock.h Thu May 21 04:44:21 2009 (r192520) @@ -31,28 +31,6 @@ #ifndef _SYS__LOCK_H_ #define _SYS__LOCK_H_ -struct lock_profile_object { - /* - * This does not result in variant structure sizes because - * MUTEX_PROFILING is in opt_global.h - */ - u_int64_t lpo_acqtime; - u_int64_t lpo_waittime; - const char *lpo_filename; - u_int lpo_namehash; - int lpo_lineno; - const char *lpo_type; - /* - * Fields relating to measuring contention on mutexes. - * holding must be accessed atomically since it's - * modified by threads that don't yet hold the mutex. - * locking is only modified and referenced while - * the mutex is held. - */ - u_int lpo_contest_holding; - u_int lpo_contest_locking; -}; - struct lock_object { const char *lo_name; /* Individual lock name. */ u_int lo_flags;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905210444.n4L4iLXI054859>