From owner-cvs-src-old@FreeBSD.ORG Fri Oct 23 14:53:37 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29FB1106566C for ; Fri, 23 Oct 2009 14:53:37 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 16CFE8FC0C for ; Fri, 23 Oct 2009 14:53:37 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n9NErapu018065 for ; Fri, 23 Oct 2009 14:53:36 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n9NEraVK018064 for cvs-src-old@freebsd.org; Fri, 23 Oct 2009 14:53:36 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <200910231453.n9NEraVK018064@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Fri, 23 Oct 2009 14:50:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen wordexp.c src/tools/regression/lib/libc/gen test-wordexp.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Oct 2009 14:53:37 -0000 jilles 2009-10-23 14:50:11 UTC FreeBSD src repository Modified files: lib/libc/gen wordexp.c tools/regression/lib/libc/gen test-wordexp.c Log: SVN rev 198406 on 2009-10-23 14:50:11Z by jilles wordexp(3): fix some bugs with signals and long outputs * retry various system calls on EINTR * retry the rest after a short read (common if there is more than about 1K of output) * block SIGCHLD like system(3) does (note that this does not and cannot work fully in threaded programs, they will need to be careful with wait functions) PR: 90580 MFC after: 1 month Revision Changes Path 1.7 +57 -19 src/lib/libc/gen/wordexp.c 1.3 +42 -0 src/tools/regression/lib/libc/gen/test-wordexp.c