From c8a98491d0e75d27909b73e2c2807d1165087da1 Mon Sep 17 00:00:00 2001 From: davidxu Date: Tue, 8 Aug 2006 05:04:43 +0000 Subject: Axe unused member field. --- lib/libthr/thread/thr_mutex.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/libthr/thread/thr_mutex.c') diff --git a/lib/libthr/thread/thr_mutex.c b/lib/libthr/thread/thr_mutex.c index 0e3cebe..7d5922a 100644 --- a/lib/libthr/thread/thr_mutex.c +++ b/lib/libthr/thread/thr_mutex.c @@ -128,7 +128,6 @@ mutex_init(pthread_mutex_t *mutex, pmutex->m_prio = attr->m_ceiling; else pmutex->m_prio = -1; - pmutex->m_saved_prio = 0; MUTEX_INIT_LINK(pmutex); *mutex = pmutex; return (0); @@ -191,7 +190,6 @@ _mutex_reinit(pthread_mutex_t *mutex) (*mutex)->m_count = 0; (*mutex)->m_refcount = 0; (*mutex)->m_prio = 0; - (*mutex)->m_saved_prio = 0; return (0); } -- cgit v1.1