From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: alin soare Newsgroups: gmane.emacs.devel Subject: please help about garbage collector. Date: Thu, 2 Dec 2010 09:10:08 +0000 (UTC) Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1291301969 28498 80.91.229.12 (2 Dec 2010 14:59:29 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 2 Dec 2010 14:59:29 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 02 15:59:25 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1POAd1-0000V8-V0 for ged-emacs-devel@m.gmane.org; Thu, 02 Dec 2010 15:59:24 +0100 Original-Received: from localhost ([127.0.0.1]:45148 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POAd1-00075R-EG for ged-emacs-devel@m.gmane.org; Thu, 02 Dec 2010 09:59:23 -0500 Original-Received: from [140.186.70.92] (port=52020 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POAcZ-0000uG-91 for emacs-devel@gnu.org; Thu, 02 Dec 2010 09:59:17 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PO5BN-0004nD-R9 for emacs-devel@gnu.org; Thu, 02 Dec 2010 04:10:32 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:53359) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PO5BN-0004mp-JT for emacs-devel@gnu.org; Thu, 02 Dec 2010 04:10:29 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PO5BK-0000dQ-6u for emacs-devel@gnu.org; Thu, 02 Dec 2010 10:10:26 +0100 Original-Received: from 82-76-35-107.rdsnet.ro ([82-76-35-107.rdsnet.ro]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 02 Dec 2010 10:10:26 +0100 Original-Received: from as1789 by 82-76-35-107.rdsnet.ro with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 02 Dec 2010 10:10:26 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 16 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 82.76.35.107 (Mozilla/5.0 (X11; U; Linux i686; fr; rv:1.9.2.12) Gecko/20101027 Ubuntu/10.04 (lucid) Firefox/3.6.12) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:133308 Archived-At: /* When scanning the C stack for live Lisp objects, Emacs keeps track of what memory allocated via lisp_malloc is intended for what purpose. This enumeration specifies the type of memory. */ Could you explain me what kind of Lisp Objects are keps on the stack ? What kind of Lisp objects are kept on the stack ? Where and why such objects are allocated ? Thanks. Alin.