From owner-cvs-all@FreeBSD.ORG Thu Apr 17 22:00:53 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97A8237B401; Thu, 17 Apr 2003 22:00:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E4B543FE1; Thu, 17 Apr 2003 22:00:53 -0700 (PDT) (envelope-from deischen@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 h3I50r0U023435; Thu, 17 Apr 2003 22:00:53 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3I50qOl023433; Thu, 17 Apr 2003 22:00:52 -0700 (PDT) Message-Id: <200304180500.h3I50qOl023433@repoman.freebsd.org> From: Daniel Eischen Date: Thu, 17 Apr 2003 22:00:52 -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/i386/i386 ksd.c thr_enter_uts.S thr_getcontext.S thr_switch.S src/lib/libpthread/arch/i386/include atomic_ops.h ksd.h pthread_md.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Apr 2003 05:00:54 -0000 deischen 2003/04/17 22:00:52 PDT FreeBSD src repository Modified files: lib/libpthread/arch/i386/i386 thr_enter_uts.S thr_switch.S Added files: lib/libpthread/arch/i386/i386 ksd.c thr_getcontext.S lib/libpthread/arch/i386/include atomic_ops.h ksd.h pthread_md.h Log: Add architecture dependent atomic ops (atomic_swap only), KSE specific data, and userland versions of [gs]etcontext(). Modify the UTS entry and exit functions to account of FPU validity and format. Revision Changes Path 1.1 +166 -0 src/lib/libpthread/arch/i386/i386/ksd.c (new) 1.4 +6 -2 src/lib/libpthread/arch/i386/i386/thr_enter_uts.S 1.1 +157 -0 src/lib/libpthread/arch/i386/i386/thr_getcontext.S (new) 1.4 +24 -8 src/lib/libpthread/arch/i386/i386/thr_switch.S 1.1 +51 -0 src/lib/libpthread/arch/i386/include/atomic_ops.h (new) 1.1 +144 -0 src/lib/libpthread/arch/i386/include/ksd.h (new) 1.1 +54 -0 src/lib/libpthread/arch/i386/include/pthread_md.h (new)