unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Mathias Dahl <mathias.dahl@gmail.com>
To: emacs-devel@gnu.org
Subject: Re: call-process having problems with a big total length of arguments under Windows
Date: Sun, 10 Mar 2013 14:19:54 +0100	[thread overview]
Message-ID: <CABrcCQ6GoAuO=Nr0Lzh6kMfjd03P21HOSroXfXx_GteKgS_BYA@mail.gmail.com> (raw)
In-Reply-To: <CABrcCQ6YpiAKXoz1fvZn0gBpvtLse8cvbSOT=hKPs=yFemY4iw@mail.gmail.com>

PS. I found a limit on the number of arguments I can use if the
argument is one character:

(apply 'call-process
       (append (list
                "ping"
                nil t nil)
               (make-list 16369 "1")))

Now, if I double the length of each argument I can get higher than
16369 characters in total:

(apply 'call-process
       (append (list
                "ping"
                nil t nil)
               (make-list 10912 "12")))

So, it's not simply the total amount, but a combination of the number
of arguments on the length of those arguments.

Any ideas?

On Sun, Mar 10, 2013 at 2:02 PM, Mathias Dahl <mathias.dahl@gmail.com> wrote:
> Under GNU/Linux I can do this (calling ping with an 10000 long argument list):
>
> (apply 'call-process
>        (append (list
>                 "ping"
>                 nil t nil)
>                (make-list 10000 "0123456789")))
>
> (of course, ping complains about the syntax, but that is another
> matter, ping is just an example of a command that exists on both
> platforms where I test)
>
> On Windows (Windows 7, 64 bit) this works in a quite recent Emacs
> (24.1.50.1 from last summer):
>
> (apply 'call-process
>        (append (list
>                 "ping"
>                 nil t nil)
>                (make-list 2000 "0123456789")))
>
> But this does not (2000 is changed to 3000):
>
> (apply 'call-process
>        (append (list
>                 "ping"
>                 nil t nil)
>                (make-list 3000 "0123456789")))
>
> I get (file-error "Spawning child process" "exec format error") when I
> reach a certain amount of arguments. I can make it fail at fewer
> arguments if I make the length of each argument longer.
>
> What sets the limit here? Is there a bug in Emacs on Windows or is it
> a limitation of the OS? Is there is a known limitation in the total
> length of all parameters?
>
> Thanks!
>
> /Mathias



  reply	other threads:[~2013-03-10 13:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-10 13:02 call-process having problems with a big total length of arguments under Windows Mathias Dahl
2013-03-10 13:19 ` Mathias Dahl [this message]
2013-03-10 16:21   ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CABrcCQ6GoAuO=Nr0Lzh6kMfjd03P21HOSroXfXx_GteKgS_BYA@mail.gmail.com' \
    --to=mathias.dahl@gmail.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).