From owner-cvs-src@FreeBSD.ORG Wed Nov 21 05:21:58 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B91C616A421; Wed, 21 Nov 2007 05:21:58 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B09E813C468; Wed, 21 Nov 2007 05:21:58 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id lAL5Lwcl094347; Wed, 21 Nov 2007 05:21:58 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lAL5LwBl094346; Wed, 21 Nov 2007 05:21:58 GMT (envelope-from davidxu) Message-Id: <200711210521.lAL5LwBl094346@repoman.freebsd.org> From: David Xu Date: Wed, 21 Nov 2007 05:21:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libthr/thread thr_private.h thr_rtld.c thr_sem.c thr_sig.c thr_suspend_np.c thr_umtx.c thr_umtx.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2007 05:21:58 -0000 davidxu 2007-11-21 05:21:58 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_private.h thr_rtld.c thr_sem.c thr_sig.c thr_suspend_np.c thr_umtx.c thr_umtx.h Log: Remove umtx_t definition, use type long directly, add wrapper function _thr_umtx_wait_uint() for umtx operation UMTX_OP_WAIT_UINT, use the function in semaphore operations, this fixed compiler warnings. Revision Changes Path 1.80 +1 -1 src/lib/libthr/thread/thr_private.h 1.4 +5 -5 src/lib/libthr/thread/thr_rtld.c 1.10 +3 -3 src/lib/libthr/thread/thr_sem.c 1.24 +2 -1 src/lib/libthr/thread/thr_sig.c 1.9 +1 -1 src/lib/libthr/thread/thr_suspend_np.c 1.13 +14 -2 src/lib/libthr/thread/thr_umtx.c 1.11 +5 -5 src/lib/libthr/thread/thr_umtx.h