From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2827 invoked by alias); 11 Apr 2018 22:31:41 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 23338 Received: (qmail 27343 invoked by uid 1010); 11 Apr 2018 22:31:41 -0000 X-Qmail-Scanner-Diagnostics: from mail-pf0-f169.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(209.85.192.169):SA:0(-1.9/5.0):. Processed in 14.155164 secs); 11 Apr 2018 22:31:41 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE, SPF_PASS,T_DKIMWL_WL_MED,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version; bh=3hhg+jORqKPWajHDUYYPd06FrtW91H68M1no5YFhWTM=; b=Mg/5JmAPMlmfVxu04DAHjYb5CHRRsSWn4wEJW2KHPOtXcWhSG3IbmboC7B8qpiJDhp n7SvlvYMcVMvXkbRQPey4d6iq7vLwhFVZEr/ZZAtcylzK9lXOAEtmZ6VWJEfsX2o81wt qhWSezVNuebCTtsY01wgtJO/nf8/WjQFz5WSWqJ36dClW8hFvCkVeHTahnK6xTEwSs6E HGvDiKdNkSci7cg5knKfSaywgvDfy6CwOHlQvLHJqBmmkYvA9bU7ui0Xxay9suGnTXJm iQT+mt/IOeIfEHKrScCnrfZK9PV/R3oqxuU3WB6+5+qU74PgfWzjRsweLjsY9vjWZEd7 1g2A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version; bh=3hhg+jORqKPWajHDUYYPd06FrtW91H68M1no5YFhWTM=; b=VrtAmsuZ+pZ9lBVtxLJjK3cJgbqSkieK9EOpS1adNaCKpq4AG5YYku221o3OELqC+V BL0tzxcmod9fxAuHWtLjQKTyjBqLLECXJmMLnYBbkrXyzHSKtdPFLQ7W91ySN40f/url 3Nx0MeaB/+eyxTCUwRUXZhkvb6YKlEzyOa4NrtP+DOw7pSj3ZrdrDFf1SQeKQ2SYAWqC zmeknoU26rEUjhbdJwXO6su/NfzEM0MH2KCzmK8pTZQ3b4nRTPMgZhAM+OmweAExkImr AE60Igp21Z2/gWXIAtGK0cCZ6Mw7wpn+2NS2nJw5E48YYkxP+g0v4j9TuhE/dC0vKRtW sY3Q== X-Gm-Message-State: ALQs6tAf+fb6GkHPuan2GloChCmykZHpuYO5aG6ZgKjFMFE1nCjS/iVE cNmpFgw7bC06D4hgX9nv041RHeoR X-Google-Smtp-Source: AIpwx48BQ0BWmRPyA+ZgWQXSHyDYUxnXRx46Lt9Gs+LV5ZMuUZXhSJxIx1JWd4WoyY7+k1cvebOnzg== X-Received: by 10.98.17.210 with SMTP id 79mr5514525pfr.65.1523485884760; Wed, 11 Apr 2018 15:31:24 -0700 (PDT) From: Bart Schaefer Message-Id: <180411153121.ZM3374@torch.brasslantern.com> Date: Wed, 11 Apr 2018 15:31:21 -0700 In-Reply-To: Comments: In reply to Winston Weinert "Re: realloc(): invalid next size" (Apr 8, 1:32pm) References: <752c290a-01fd-2864-f88a-56e2833ff3b9@ml1.net> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: Winston Weinert , zsh-users@zsh.org Subject: Re: realloc(): invalid next size MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii So, the stack trace indicates this is happening in expandjobtab(), which tends to imply that something is fork-bombing or otherwise flooding the job table. This may mean that MAX_MAXJOBS (default 1000) is too large for the memory space required by the job table? If you recompile with a smaller value for MAX_MAXJOBS to you get an error message instead of a crash?