From owner-cvs-src@FreeBSD.ORG Sun Jul 8 08:41:10 2007 Return-Path: <owner-cvs-src@FreeBSD.ORG> X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 175AD16A400; Sun, 8 Jul 2007 08:41:10 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0266113C487; Sun, 8 Jul 2007 08:41:10 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l688f9HD052704; Sun, 8 Jul 2007 08:41:09 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l688f95u052703; Sun, 8 Jul 2007 08:41:09 GMT (envelope-from netchild) Message-Id: <200707080841.l688f95u052703@repoman.freebsd.org> From: Alexander Leidinger <netchild@FreeBSD.org> Date: Sun, 8 Jul 2007 08:41:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/amd64/linux32 linux.h src/sys/compat/linux linux_getcwd.c linux_misc.c linux_signal.c linux_signal.h src/sys/i386/linux linux.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree <cvs-src.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>, <mailto:cvs-src-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/cvs-src> List-Post: <mailto:cvs-src@freebsd.org> List-Help: <mailto:cvs-src-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/cvs-src>, <mailto:cvs-src-request@freebsd.org?subject=subscribe> X-List-Received-Date: Sun, 08 Jul 2007 08:41:10 -0000 netchild 2007-07-08 08:41:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/linux32 linux.h sys/compat/linux linux_getcwd.c linux_misc.c linux_signal.c linux_signal.h sys/i386/linux linux.h Log: MFC (2 of X): - some linuxulator style(9) fixes - add datatypes and definitions in preparation of further commits - use one (l_sigval) of the new datatypes on amd64 and get rid of a now unused include (this may or may not fix some signal handling issues on amd64) [1] - convert some unconditional debug handling into the common linuxulator way - use some more appropriate format string types in some debug printf's - convert signal validation into a macro Except for [1] on amd64 there is no visible change to a normal user. Tested by: scf (i386), Arno J. Klaassen <arno@heho.snv.jussieu.fr> (amd64) Revision Changes Path 1.1.8.2 +43 -8 src/sys/amd64/linux32/linux.h 1.19.2.3 +2 -2 src/sys/compat/linux/linux_getcwd.c 1.170.2.4 +8 -8 src/sys/compat/linux/linux_misc.c 1.51.2.1 +1 -1 src/sys/compat/linux/linux_signal.c 1.6.14.1 +2 -0 src/sys/compat/linux/linux_signal.h 1.64.2.2 +33 -1 src/sys/i386/linux/linux.h