From owner-cvs-src-old@FreeBSD.ORG Wed Apr 1 12:45:26 2009 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 0B5361065673 for ; Wed, 1 Apr 2009 12:45:25 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B7E6B8FC08 for ; Wed, 1 Apr 2009 12:45:25 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n31CjPgM024988 for ; Wed, 1 Apr 2009 12:45:25 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n31CjPVu024987 for cvs-src-old@freebsd.org; Wed, 1 Apr 2009 12:45:25 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <200904011245.n31CjPVu024987@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Wed, 1 Apr 2009 12:44:17 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include reg.h ucontext.h src/sys/compat/ia32 ia32_signal.h src/sys/i386/include ucontext.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: Wed, 01 Apr 2009 12:45:26 -0000 kib 2009-04-01 12:44:17 UTC FreeBSD src repository Modified files: sys/amd64/include reg.h ucontext.h sys/compat/ia32 ia32_signal.h sys/i386/include ucontext.h Log: SVN rev 190616 on 2009-04-01 12:44:17Z by kib Add all segment registers for the amd64 CPU to struct reg and mcontext. To keep these structures ABI-compatible, half the size of r_trapno, r_err, mc_trapno, mc_flags. Add fsbase and gsbase to mcontext on both amd64 and i386. Add flags to amd64 mcontext to indicate that it contains valid segments or bases. In collaboration with: pho Discussed with: peter Reviewed by: jhb Revision Changes Path 1.39 +6 -2 src/sys/amd64/include/reg.h 1.19 +20 -4 src/sys/amd64/include/ucontext.h 1.11 +3 -1 src/sys/compat/ia32/ia32_signal.h 1.12 +6 -1 src/sys/i386/include/ucontext.h