From owner-freebsd-questions@FreeBSD.ORG Mon Sep 13 17:21:11 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F89816A4CE for ; Mon, 13 Sep 2004 17:21:11 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24F3543D48 for ; Mon, 13 Sep 2004 17:21:11 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i8DHLAp8007723; Mon, 13 Sep 2004 12:21:10 -0500 (CDT) (envelope-from dan) Date: Mon, 13 Sep 2004 12:21:10 -0500 From: Dan Nelson To: Jesse Guardiani Message-ID: <20040913172109.GB18290@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-OS: FreeBSD 5.3-BETA3 X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i cc: freebsd-questions@freebsd.org Subject: Re: mkfifo - disk backed? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Sep 2004 17:21:11 -0000 In the last episode (Sep 13), Jesse Guardiani said: > Just curious: Are FIFOs made by mkfifo disk backed? Do they go away > between reboots? Do they lose data between reboots? Fifos are just pipes with a visible physical name. The fifo itself stays in the filesystem after a reboot, but since all the data passing is handled in the kernel, a reboot will blow away any data (including the processes reading/writing that data :). If your FIFO is on an NFS mount, a reboot of the remote server will have no effect on the client's use of the fifo (since all fifo traffic is handled locally on the client). -- Dan Nelson dnelson@allantgroup.com