From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] trunk r117765: Add vectors support to Fsort. Date: Fri, 29 Aug 2014 19:41:04 +0400 Message-ID: <54009F10.3030706@yandex.ru> References: <83fvgfinea.fsf@gnu.org> <46022C7F-2478-4350-BBB9-966D5978B7D5@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1409326907 10403 80.91.229.3 (29 Aug 2014 15:41:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 29 Aug 2014 15:41:47 +0000 (UTC) Cc: emacs-devel@gnu.org To: Jordon Biondo Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Aug 29 17:41:40 2014 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 1XNOIy-0004Ax-Hg for ged-emacs-devel@m.gmane.org; Fri, 29 Aug 2014 17:41:36 +0200 Original-Received: from localhost ([::1]:42656 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNOIy-0005gt-0N for ged-emacs-devel@m.gmane.org; Fri, 29 Aug 2014 11:41:36 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34902) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNOIf-0005go-0d for emacs-devel@gnu.org; Fri, 29 Aug 2014 11:41:24 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XNOIX-0002Y4-Ic for emacs-devel@gnu.org; Fri, 29 Aug 2014 11:41:16 -0400 Original-Received: from forward9l.mail.yandex.net ([84.201.143.142]:56941) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNOIX-0002Xn-B8 for emacs-devel@gnu.org; Fri, 29 Aug 2014 11:41:09 -0400 Original-Received: from smtp12.mail.yandex.net (smtp12.mail.yandex.net [95.108.131.191]) by forward9l.mail.yandex.net (Yandex) with ESMTP id B4E2BE60451; Fri, 29 Aug 2014 19:41:05 +0400 (MSK) Original-Received: from smtp12.mail.yandex.net (localhost [127.0.0.1]) by smtp12.mail.yandex.net (Yandex) with ESMTP id 3CC7E16A00D0; Fri, 29 Aug 2014 19:41:05 +0400 (MSK) Original-Received: from unknown (unknown [37.139.80.10]) by smtp12.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id UmZh9if01M-f4tiVrr7; Fri, 29 Aug 2014 19:41:04 +0400 (using TLSv1.2 with cipher AES128-SHA (128/128 bits)) (Client certificate not present) X-Yandex-Uniq: 245922dd-5f6d-486b-8f40-8df4d822203b DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1409326864; bh=xKJSv92xqEHykLs1a5u86zRg8EtWRT6U1IitcMinzRs=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=Ta7sW+qBexNVOLu/atIgM+0NBiXr5b2wj3Di9ubEqYMTrVALQO6n2OBcttUSfN+Ok NYsyLzaNgqnwwgUgmqZ3Tn1Lat+qmP5mk8n9L1DI9zF2KuICxI2EcvjyaCYqYu0QV2 tNSCHuzE4RShzBAcqRQUzV56rE1PJ8lwrEhkKjEA= Authentication-Results: smtp12.mail.yandex.net; dkim=pass header.i=@yandex.ru User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 In-Reply-To: <46022C7F-2478-4350-BBB9-966D5978B7D5@gmail.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] [fuzzy] X-Received-From: 84.201.143.142 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:173890 Archived-At: On 08/29/2014 06:21 PM, Jordon Biondo wrote: > fns-tests.el is failing on trunk for me. I get the Re-entering top level > after C stack overflow error, then: Fatal error 11: Segmentation fault > Abort trap: 6, if I try to do anything else. It looks like qsort_r needs > special treatment on darwin and bsd systems. Oops. I have a VM with FreeBSD 10.0 and will take a look. BTW, what is your output from the following program: #include #include int main (int argc, char *argv[]) { struct rlimit rlim; getrlimit (RLIMIT_STACK, &rlim); printf ("%ld %ld\n", rlim.rlim_cur, rlim.rlim_max); return 0; } Running as root, I get: 536870912 536870912 512 Mb stack? I just don't believe in that. Dmitry