From owner-cvs-sys Thu Feb 13 02:47:37 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA03035 for cvs-sys-outgoing; Thu, 13 Feb 1997 02:47:37 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA03027; Thu, 13 Feb 1997 02:47:33 -0800 (PST) Date: Thu, 13 Feb 1997 02:47:33 -0800 (PST) From: Bruce Evans Message-Id: <199702131047.CAA03027@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/sys gmon.h src/sys/i386/include profile.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/02/13 02:47:31 Modified: sys/sys gmon.h sys/i386/include profile.h Log: Moved definition of FUNCTION_ALIGNMENT to a machine-dependent place. Changed it from 4 to 16 for i386's. It can be anything for i386's, but compiler options limit it to a power of 2, and assembler and linker deficiencies limit it to a small power of 2 (<= 16). We use 16 in the kernel to get smaller tables (see Makefile.i386 and ). We still use the default of 4 in user mode. Use HISTCOUNTER instead of (*kcount) in the definition of KCOUNT() for consistency with other macros. Revision Changes Path 1.11 +0 -5 src/sys/sys/gmon.h 1.10 +9 -1 src/sys/i386/include/profile.h