From owner-freebsd-hackers@FreeBSD.ORG Wed Feb 27 09:35:25 2008 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0533106567D for ; Wed, 27 Feb 2008 09:35:25 +0000 (UTC) (envelope-from mark.linn@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.190]) by mx1.freebsd.org (Postfix) with ESMTP id 542BF13C4EB for ; Wed, 27 Feb 2008 09:35:25 +0000 (UTC) (envelope-from mark.linn@gmail.com) Received: by ti-out-0910.google.com with SMTP id j2so1916963tid.3 for ; Wed, 27 Feb 2008 01:35:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=MuF2GmuK2eArqw52Fsdoqbl9UaZgRA7idewbsTZoBLM=; b=tQLISvQ/8wPkuh7Dei5PG42Jd4FIU7nuB5V55bd2M/edzoVXe/tY5SZzMO4LDiDzONCidQs9QhSwqDJ2TcvXDSN2+dE4v//Wan7gBUXVJnBUu9buyuTf6u7tUxCTpl7ypD5WZwMFAytILjyxZ/XoPSBVKVwkM7REMYLzVo4INts= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=doVExqNbhag4fpB+ObA5q22OKkJMDsegM12/OJwmzRfYoec9/kxyIRCJwUGwFaDsJDXNtfv6646Cc1ey4O33LDaQAFZ8R+KNEnNe1k+2KSZxaEsjmocGQmDUIqenESagZZOxbUUJyAqoSt3CIgLSM2UNC75GvP4Y8nl8jZasiIQ= Received: by 10.150.92.11 with SMTP id p11mr2150740ybb.36.1204103247303; Wed, 27 Feb 2008 01:07:27 -0800 (PST) Received: by 10.150.226.21 with HTTP; Wed, 27 Feb 2008 01:07:27 -0800 (PST) Message-ID: <84fb42ef0802270107y4ddb8fd2scd83fe086414869f@mail.gmail.com> Date: Wed, 27 Feb 2008 01:07:27 -0800 From: "Mark Linn" To: freebsd-hackers@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: non-blocking io, EINTR X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2008 09:35:25 -0000 Hi, I am setting the O_NONBLOCK flag on a socket file descriptor using fcntl, will a read() on the socket return EINTR when the process get a signal? Thanks Mark