From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Dynamic loading progress Date: Thu, 24 Sep 2015 09:58:11 -0400 Message-ID: References: <55DE75FD.8020308@cs.ucla.edu> <55F5DD8C.70506@dancol.org> <55F62C16.4000105@dancol.org> <55F64F04.9030002@dancol.org> <55F6E43E.9030502@dancol.org> <55F70C4E.8030805@dancol.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1443103115 26409 80.91.229.3 (24 Sep 2015 13:58:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 24 Sep 2015 13:58:35 +0000 (UTC) Cc: Daniel Colascione , Emacs development discussions , Philipp Stephani , Paul Eggert , Tom Tromey , Stephen Leake To: =?windows-1252?Q?Aur=E9lien?= Aptel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Sep 24 15:58:25 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 1Zf72V-0000DH-JR for ged-emacs-devel@m.gmane.org; Thu, 24 Sep 2015 15:58:23 +0200 Original-Received: from localhost ([::1]:37545 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zf72V-0001ZN-34 for ged-emacs-devel@m.gmane.org; Thu, 24 Sep 2015 09:58:23 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zf72R-0001YG-16 for emacs-devel@gnu.org; Thu, 24 Sep 2015 09:58:20 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zf72L-0000DW-Gh for emacs-devel@gnu.org; Thu, 24 Sep 2015 09:58:18 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:39657) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zf72L-0000Cr-92 for emacs-devel@gnu.org; Thu, 24 Sep 2015 09:58:13 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0CVDQA731xV/2yixEVcgxCEAsEVh0sEAgKBPDsSAQEBAQEBAYEKQQWDXQEBAwFWIwULCzQSFBgNJIg3CM8jAQEBAQYCAR+LOoUFB4QtBbM/gUUjgWYkHIFuIoJ4AQEB X-IPAS-Result: A0CVDQA731xV/2yixEVcgxCEAsEVh0sEAgKBPDsSAQEBAQEBAYEKQQWDXQEBAwFWIwULCzQSFBgNJIg3CM8jAQEBAQYCAR+LOoUFB4QtBbM/gUUjgWYkHIFuIoJ4AQEB X-IronPort-AV: E=Sophos;i="5.13,465,1427774400"; d="scan'208";a="165731178" Original-Received: from 69-196-162-108.dsl.teksavvy.com (HELO ceviche.home) ([69.196.162.108]) by ironport2-out.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 24 Sep 2015 09:58:12 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 9F5E16614D; Thu, 24 Sep 2015 09:58:11 -0400 (EDT) In-Reply-To: (=?windows-1252?Q?=22Aur=E9lien?= Aptel"'s message of "Thu, 24 Sep 2015 14:45:37 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 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:190330 Archived-At: > I haven't made any progress on errors. I was reading on > condition-case, setjmp/longjmp and how it's used for > signaling/throwing. I actually knew very little about it. I shouldnt > be the one writing this stuff I think... That's OK. We can add it later. > Anyway I was looking into how > I would set up a "catch-all" wrapping code so that we can implement a > funcall that always returns and I still haven't figured it out. You can grep for "safe_call" to get an idea. > You said you would rather have an "unsafe" funcall that sometimes not > return to module code so I will try to do that. IIUC you've done that already, because it requires no special effort. That's why it's the path I want to take first. Stefan