From owner-cvs-all@FreeBSD.ORG Fri Dec 19 09:11:21 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 AD22B16A4CE; Fri, 19 Dec 2003 09:11:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF99E43D1D; Fri, 19 Dec 2003 09:11:20 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id hBJHBK0B058976; Fri, 19 Dec 2003 09:11:20 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id hBJHBK6p058975; Fri, 19 Dec 2003 09:11:20 -0800 (PST) (envelope-from kan) Message-Id: <200312191711.hBJHBK6p058975@repoman.freebsd.org> From: Alexander Kabaev Date: Fri, 19 Dec 2003 09:11:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/stdlib atexit.c atexit.h exit.c 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, 19 Dec 2003 17:11:21 -0000 kan 2003/12/19 09:11:20 PST FreeBSD src repository Modified files: lib/libc/stdlib atexit.c atexit.h exit.c Log: Implement __cxa_atexit/__cxa_finalize as specified by the cross-vendor ó++ ABI document at http://www.codesourcery.com/cxx-abi/abi.html#dso-dtor The ABI was initially defined for ia64, but GCC3 and Intel compilers have adopted it on other platforms. This is the patch from PR bin/59552 with a number of changes by me. PR: bin/59552 Submitted by: Bradley T Hughes (bhughes at trolltech dot com) Revision Changes Path 1.7 +101 -7 src/lib/libc/stdlib/atexit.c 1.3 +1 -7 src/lib/libc/stdlib/atexit.h 1.7 +1 -6 src/lib/libc/stdlib/exit.c