emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-diffs] trunk r117765: Add vectors support to Fsort.


From: Dmitry Antipov
Subject: Re: [Emacs-diffs] trunk r117765: Add vectors support to Fsort.
Date: Fri, 29 Aug 2014 19:41:04 +0400
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0

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 <stdio.h>
#include <sys/resource.h>

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]