From owner-cvs-src@FreeBSD.ORG Sat Oct 9 15:07:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 656AC16A4CE; Sat, 9 Oct 2004 15:07:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57E4B43D3F; Sat, 9 Oct 2004 15:07:20 +0000 (GMT) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i99F7Kmo000876; Sat, 9 Oct 2004 15:07:20 GMT (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i99F7KjP000875; Sat, 9 Oct 2004 15:07:20 GMT (envelope-from mtm) Message-Id: <200410091507.i99F7KjP000875@repoman.freebsd.org> From: Mike Makonnen Date: Sat, 9 Oct 2004 15:07:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Subject: cvs commit: src/lib Makefile src/lib/libthr/arch/amd64 Makefile.inc src/lib/libthr/arch/amd64/amd64 _setcurthread.c src/lib/libthr/arch/i386/i386 _setcurthread.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2004 15:07:20 -0000 mtm 2004-10-09 15:07:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) lib Makefile lib/libthr/arch/i386/i386 _setcurthread.c Added files: (Branch: RELENG_5) lib/libthr/arch/amd64 Makefile.inc lib/libthr/arch/amd64/amd64 _setcurthread.c Log: MFC: lib/Makefile: ---------------------------- revision 1.1 date: 2004/08/19 23:41:12; author: davidxu; state: Exp; Add AMD64 support code. ============================================================================= RCS file: /home/ncvs/src/lib/libthr/arch/i386/i386/_setcurthread.c,v ---------------------------- revision 1.15 date: 2004/08/19 23:49:04; author: davidxu; state: Exp; lines: +10 -3 Adjust code to support AMD64, on AMD64, thread needs to set fsbase by itself before it can execute any other code, so new thread should be created with all signals are masked until after fsbase is set. ============================================================================= RCS file: /home/ncvs/src/lib/Makefile,v ---------------------------- revision 1.190 date: 2004/08/19 23:51:42; author: davidxu; state: Exp; lines: +1 -2 build libthr on amd64. ============================================================================= Approved by: re/scottl Revision Changes Path 1.189.2.2 +1 -2 src/lib/Makefile 1.1.2.1 +5 -0 src/lib/libthr/arch/amd64/Makefile.inc (new) 1.1.2.1 +101 -0 src/lib/libthr/arch/amd64/amd64/_setcurthread.c (new) 1.14.2.1 +10 -3 src/lib/libthr/arch/i386/i386/_setcurthread.c