From owner-cvs-src@FreeBSD.ORG Wed Jun 25 22:40:16 2003 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 9CDD237B401; Wed, 25 Jun 2003 22:40:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4621D43FE3; Wed, 25 Jun 2003 22:40:16 -0700 (PDT) (envelope-from marcel@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 h5Q5eG0U011848; Wed, 25 Jun 2003 22:40:16 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5Q5eF0N011847; Wed, 25 Jun 2003 22:40:15 -0700 (PDT) Message-Id: <200306260540.h5Q5eF0N011847@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 25 Jun 2003 22:40:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/arch/ia64 Makefile.inc src/lib/libpthread/arch/ia64/ia64 context.S enter_uts.S 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: Thu, 26 Jun 2003 05:40:17 -0000 marcel 2003/06/25 22:40:15 PDT FreeBSD src repository Modified files: lib/libpthread/arch/ia64 Makefile.inc Added files: lib/libpthread/arch/ia64/ia64 context.S enter_uts.S Log: Implement _ia64_enter_uts(). The purpose of this function is to switch the register stack and memory stack and call the function given to it. While here, provide empty, non-working, stubs for the context functions (_ia64_save_context() and _ia64_restore_context()) so that anyone can at least compile libkse from CVS sources. Real implementations will follow soon. Revision Changes Path 1.3 +1 -1 src/lib/libpthread/arch/ia64/Makefile.inc 1.1 +40 -0 src/lib/libpthread/arch/ia64/ia64/context.S (new) 1.1 +60 -0 src/lib/libpthread/arch/ia64/ia64/enter_uts.S (new)