From owner-cvs-src-old@FreeBSD.ORG Tue Nov 9 20:47:02 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAEC3106566C for ; Tue, 9 Nov 2010 20:47:02 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 79CBE8FC14 for ; Tue, 9 Nov 2010 20:47:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oA9Kl2wp004172 for ; Tue, 9 Nov 2010 20:47:02 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oA9Kl2WD004159 for cvs-src-old@freebsd.org; Tue, 9 Nov 2010 20:47:02 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201011092047.oA9Kl2WD004159@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Tue, 9 Nov 2010 20:46:41 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include mutex.h src/sys/arm/include mutex.h src/sys/i386/include mutex.h src/sys/ia64/include mutex.h src/sys/kern kern_mutex.c src/sys/mips/include mutex.h src/sys/pc98/include mutex.h src/sys/powerpc/include mutex.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Nov 2010 20:47:02 -0000 jhb 2010-11-09 20:46:41 UTC FreeBSD src repository Modified files: sys/kern kern_mutex.c sys/sys mutex.h Removed files: sys/amd64/include mutex.h sys/arm/include mutex.h sys/i386/include mutex.h sys/ia64/include mutex.h sys/mips/include mutex.h sys/pc98/include mutex.h sys/powerpc/include mutex.h sys/sparc64/include mutex.h sys/sun4v/include mutex.h Log: SVN rev 215054 on 2010-11-09 20:46:41Z by jhb - Remove . Most of the headers were empty, and the contents of the ones that were not empty were stale and unused. - Now that no longer exists, there is no need to allow it to override various helper macros in . - Rename various helper macros for low-level operations on mutexes to live in the _mtx_* or __mtx_* namespaces. While here, change the names to more closely match the real API functions they are backing. - Drop support for including in assembly source files. Suggested by: bde (1, 2) Revision Changes Path 1.40 +0 -35 src/sys/amd64/include/mutex.h (dead) 1.2 +0 -32 src/sys/arm/include/mutex.h (dead) 1.38 +0 -66 src/sys/i386/include/mutex.h (dead) 1.17 +0 -70 src/sys/ia64/include/mutex.h (dead) 1.220 +11 -11 src/sys/kern/kern_mutex.c 1.2 +0 -2 src/sys/mips/include/mutex.h (dead) 1.2 +0 -6 src/sys/pc98/include/mutex.h (dead) 1.30 +0 -67 src/sys/powerpc/include/mutex.h (dead) 1.6 +0 -32 src/sys/sparc64/include/mutex.h (dead) 1.2 +0 -32 src/sys/sun4v/include/mutex.h (dead) 1.107 +36 -63 src/sys/sys/mutex.h