From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon-590EEB7GvNiWaY/ihj7yzEB+6BGkLq7r@public.gmane.org Subject: [Bug 29362] flock: can return EAGAIN contrary to manpage Date: Thu, 16 Aug 2012 06:40:49 +0000 (UTC) Message-ID: <20120816064049.A684911FC6B@bugzilla.kernel.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: In-Reply-To: Sender: linux-man-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-man@vger.kernel.org https://bugzilla.kernel.org/show_bug.cgi?id=29362 Michael Kerrisk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org Resolution| |INVALID --- Comment #1 from Michael Kerrisk 2012-08-16 06:40:49 --- EAGAIN has the same value as EWOULDBLOCK, which is documented in the man page. flock() comes from BSD, where the EWOULDBLOCK error is documented. strace() can't tell the difference between the symbolic names EAGAIN and EWOULDBLOCK because it only knows about error numbers. The errno(3) man page mentions that EGAIN and EWOULDBLOCK may have the same value. -- Configure bugmail: https://bugzilla.kernel.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching the assignee of the bug. -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html