From owner-freebsd-questions@FreeBSD.ORG Sun Mar 2 13:04:17 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA4CE106566C for ; Sun, 2 Mar 2008 13:04:17 +0000 (UTC) (envelope-from colinpauladams@googlemail.com) Received: from gv-out-0910.google.com (gv-out-0910.google.com [216.239.58.186]) by mx1.freebsd.org (Postfix) with ESMTP id 5E5C08FC20 for ; Sun, 2 Mar 2008 13:04:17 +0000 (UTC) (envelope-from colinpauladams@googlemail.com) Received: by gv-out-0910.google.com with SMTP id n40so2758822gve.39 for ; Sun, 02 Mar 2008 05:04:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=6Z5Mktk90gYNRLQ4ra+EJ0Xv+HsGFDbgmXPv7C6MfDk=; b=qbAT1UWKXdYTf0G5BwL+nuAXhrltR1JTGmpyCV9H7eyB8yleygo+5UoC+aVh5hLJBGeicLK5u/V2efBy3AzlI9nqNsR4x1wkWEwNKxBN2F/qFv2FHzMF/Qzkc3ZgKgK2443hMs7bZDs3xXehxrpJ7xepz8TbPOuVBa7oN0Gzlvw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=V/+Z1uvj6aPyRMuFX9n4nhCjsO9kZiuiCs2SinF4Jc1Cs1J8FtMiuYWoRr6ww0rQ8+LFfzmUF/H819KaRzoPt5hLLyPBBu+3rNJ2G4Cl+FkmS9IR/qYOQKgpq5HFA19uGeqEEF7RX5xSCwahCtHNK7dJZgcYjr8TYhZ2JfrGdIc= Received: by 10.115.94.1 with SMTP id w1mr4262849wal.85.1204461386857; Sun, 02 Mar 2008 04:36:26 -0800 (PST) Received: by 10.114.112.1 with HTTP; Sun, 2 Mar 2008 04:36:26 -0800 (PST) Message-ID: <1afdeaec0803020436g7e2fb432qfd79d6f9f47a54dd@mail.gmail.com> Date: Sun, 2 Mar 2008 12:36:26 +0000 From: "Colin Adams" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: kern.ipc.maxpipekva X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2008 13:04:17 -0000 I'm getting error messages about this when trying to run my program. As far as I know, I don't use IPC at all, although I dare say it is used in one of the libraries that are linked in. After googling for this error, I edited /boot/loader.conf to set it to 65000000 (a nice big number?), and now if I do: sysctl kern.ipc.maxpipekva I see: kern.ipc.maxpipekva: 65000000 but I still get the message. I also get a lot of messages saying: Fatal error `Cannot create kernel pipe' at line 294 in file /usr/src/lib/libc_r/uthread/uthread_init.c (error = 24) Why does this occur, and what can i do about it? Thank you.