From owner-cvs-all@FreeBSD.ORG Tue Apr 22 13:54:05 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8B2037B401; Tue, 22 Apr 2003 13:54:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8745943FCB; Tue, 22 Apr 2003 13:54:05 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3MKs50U080427; Tue, 22 Apr 2003 13:54:05 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3MKs59X080424; Tue, 22 Apr 2003 13:54:05 -0700 (PDT) Message-Id: <200304222054.h3MKs59X080424@repoman.freebsd.org> From: John Baldwin Date: Tue, 22 Apr 2003 13:54:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_clock.c kern_fork.c subr_prof.c subr_trap.c src/sys/sys proc.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2003 20:54:06 -0000 jhb 2003/04/22 13:54:05 PDT FreeBSD src repository Modified files: sys/kern kern_clock.c kern_fork.c subr_prof.c subr_trap.c sys/sys proc.h Log: - Move PS_PROFIL and its new cousin PS_STOPPROF back over to p_flag and rename them appropriately. Protect both flags with both the proc lock and the sched_lock. - Protect p_profthreads with the proc lock. - Remove Giant from profil(2). Revision Changes Path 1.157 +17 -19 src/sys/kern/kern_clock.c 1.193 +3 -3 src/sys/kern/kern_fork.c 1.64 +13 -21 src/sys/kern/subr_prof.c 1.252 +3 -6 src/sys/kern/subr_trap.c 1.321 +2 -2 src/sys/sys/proc.h