From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?UTF-8?Q?Aur=C3=A9lien_Aptel?= Newsgroups: gmane.emacs.devel Subject: Re: Dynamic loading progress Date: Thu, 15 Oct 2015 12:13:37 +0200 Message-ID: References: <83pp9cwky8.fsf@gnu.org> <85a90ggf2d.fsf@stephe-leake.org> <54E0A40F.5080603@dancol.org> <83sie7un20.fsf@gnu.org> <54E0D181.2080802@dancol.org> <83r3trulse.fsf@gnu.org> <54E0D7E0.305@87.69.4.28> <83h9unukbg.fsf@gnu.org> <54E0DEF8.7020901@dancol> <83egpruiyp.fsf@gnu.org> <54E0FF93.2000104@dancol.org> <5610ED13.1010406@dancol.org> <56117F37.9060808@dancol.org> <837fn127aj.fsf@gnu.org> <83pp0gx355.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1444904110 18817 80.91.229.3 (15 Oct 2015 10:15:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 15 Oct 2015 10:15:10 +0000 (UTC) Cc: Eli Zaretskii , Daniel Colascione , Stephen Leake , Philipp Stephani , Emacs development discussions To: Andreas Schwab Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 15 12:15:09 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZmfYu-0005mS-Iz for ged-emacs-devel@m.gmane.org; Thu, 15 Oct 2015 12:15:04 +0200 Original-Received: from localhost ([::1]:46749 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmfYt-0005uF-Ei for ged-emacs-devel@m.gmane.org; Thu, 15 Oct 2015 06:15:03 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46167) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmfXZ-0005sY-26 for emacs-devel@gnu.org; Thu, 15 Oct 2015 06:13:42 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZmfXY-0003KX-AB for emacs-devel@gnu.org; Thu, 15 Oct 2015 06:13:40 -0400 Original-Received: from mail-lb0-x230.google.com ([2a00:1450:4010:c04::230]:34172) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZmfXW-0003K7-MK; Thu, 15 Oct 2015 06:13:38 -0400 Original-Received: by lbbwb3 with SMTP id wb3so3180471lbb.1; Thu, 15 Oct 2015 03:13:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=2eeUCr71LeEvpARCJUf84Z+3QpliwcIKxxEaKdNHviU=; b=XcvmDyv6fsvBuaWunwHOXXrdjoOiT66xj22HDyX0iDY/QyT2xFGQKB/IPePqTdKNYJ O+AWMiyI8rhYDASn5+edi8vwMNCnPdJAdW2Q+lHst6XDBWs+SRy4WAGRnydx1FomN13n Af5JYEH8aIBtDNGHvLOWYexYV69NQMDBsP4+OrIn1YkLjVZii29Szbe5nANBDySxpyq+ pOtzgdT2H4LOj1X7sW+vNvEYGGccfKBOuf6jKt4ohEosKIsF49Bi/+3xAzLQskjTnETS 50e4TV/V78Jj/0tm5TUNeua/EkXTArxslyfM6GjR2M8ffomz5NkcbMInIK13JGiQxmPE XWvQ== X-Received: by 10.112.172.165 with SMTP id bd5mr4024160lbc.51.1444904017835; Thu, 15 Oct 2015 03:13:37 -0700 (PDT) Original-Received: by 10.112.167.73 with HTTP; Thu, 15 Oct 2015 03:13:37 -0700 (PDT) In-Reply-To: X-Google-Sender-Auth: WUpEImv2qgNhnZ_tra6Z2_3Ahik X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::230 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:191624 Archived-At: On Thu, Oct 15, 2015 at 9:00 AM, Andreas Schwab wrote: > You can only use them for pointers that are known to fit in the range of > Lisp_Int, ie. all tag bits clear. This is true for all lisp object > pointers (obviously), but not for other pointers. For boxing arbitrary > pointers we have Lisp_Save_Value. I've used Save_Value for storing a module function context but a new type has to be defined for module pointers in order to handle user-provided finalizers.