From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier" Newsgroups: gmane.emacs.devel Subject: Re: Profiling font-lock in xemacs Date: Sat, 22 Jun 2002 13:32:19 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: <200206221732.g5MHWJe16327@rum.cs.yale.edu> References: <200205300129.17083.bws@deepcopy.org> <87d6vet7f2.fsf@tleepslib.sk.tsukuba.ac.jp> <5l3cw9lob0.fsf@rum.cs.yale.edu> <200205301939.02926.bws@deepcopy.org> <005d01c21835$344dc340$0201a8c0@neeeeeee> <200206201517.g5KFHaw07020@rum.cs.yale.edu> <009301c218f1$8e5a9040$0201a8c0@neeeeeee> <200206211911.g5LJBvN12715@rum.cs.yale.edu> <026d01c21991$ede47580$0201a8c0@neeeeeee> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1024767198 29293 127.0.0.1 (22 Jun 2002 17:33:18 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 22 Jun 2002 17:33:18 +0000 (UTC) Cc: "Ben Wing" , bws@deepcopy.org, xemacs-design@xemacs.org, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17LolC-0007cM-00 for ; Sat, 22 Jun 2002 19:33:18 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17LolT-0001OK-00 for ; Sat, 22 Jun 2002 19:33:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17LolA-0006ON-00; Sat, 22 Jun 2002 13:33:16 -0400 Original-Received: from rum.cs.yale.edu ([128.36.229.169]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17LokL-0006M2-00 for ; Sat, 22 Jun 2002 13:32:25 -0400 Original-Received: (from monnier@localhost) by rum.cs.yale.edu (8.11.6/8.11.6) id g5MHWJe16327; Sat, 22 Jun 2002 13:32:19 -0400 X-Mailer: exmh version 2.4 06/23/2000 with nmh-1.0.4 Original-To: "Ben Wing" Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:5097 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:5097 > urk! one of the absolute worst things about gnu emacs is its tendency to do > so much inside of signal handlers. xemacs does *nothing* whatsoever in any > signal handlers except set a flag. This includes sigchld. we've eliminated > "immediate_quit", all of that "block_input" crap, etc. the only exception > is a flag that allows a longjmp[] from a signal handler to interrupt certain > i/o operations that don't return EINTR on SIGIO, e.g. connect[]. > I made all the changes to remove this stuff and it was fairly easy; you > might consider the same. it was very satisfying to delete so much crud > in the process. Agreed. Stefan