X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:reply-to :references:mime-version:content-type:in-reply-to; q=dns; s= default; b=jgROKaEoNU/JzqCCyCx62YF3ck9EgujhmEGQMeC+mUp6Mmh/LEKRU ZBCwWprUO4CmD0xn1mgMymXeU+KCz3ARk/Rz+mtSZfuu40Iybq2bQAZHdkZ82ot8 LO2DnwwNQl7/nDrDo9u1j0ZoAeHJvTzgmTQerdzhLHM9CXjif72o2c= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:reply-to :references:mime-version:content-type:in-reply-to; s=default; bh=TQMlLFVv9xfuCCmmlM76wbpdegk=; b=h4Sxd3Ac898hRbapLoNkTxndwJh2 9SC80bAdVfMuOvxMfY/Ub+ekU4g+2AsQZZIBSOLsKUeaOluH1Nu7oQbX/xy/XkpI iEtAb67j+1FNj4xJLeeVlSLFSbFXHJ68Sp+SYH/elUkCPu0pszTLp4m8kZ9Em+s1 8lBHG5M0nxLnLY8= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,TW_FC autolearn=ham version=3.3.1 Date: Sat, 1 Jun 2013 13:35:31 +0200 From: Corinna Vinschen To: cygwin AT cygwin DOT com Subject: Re: sqlite3: bug with monotone Message-ID: <20130601113531.GE30659@calimero.vinschen.de> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: <51A6B6EB DOT 6050309 AT users DOT sourceforge DOT net> <51A7862F DOT 1070507 AT etr-usa DOT com> <51A7D47E DOT 3050502 AT users DOT sourceforge DOT net> <51A7F547 DOT 6020509 AT etr-usa DOT com> <20130531092228 DOT GB30659 AT calimero DOT vinschen DOT de> <51A900EF DOT 2020606 AT etr-usa DOT com> <20130601105741 DOT GC30659 AT calimero DOT vinschen DOT de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20130601105741.GC30659@calimero.vinschen.de> User-Agent: Mutt/1.5.21 (2010-09-15) On Jun 1 12:57, Corinna Vinschen wrote: > There's a lot to recommend not using mandatory locking at all, unless in > very limited circumstances where interoperability with native > applications using mandatory locking is required. For one thing, this > doesn't occur very often, since mandatory record locking isn't used > a lot, not even on Windows. But what's more important is that Windows > mandatory record locking works not as the user can usually expect from > fcntl or flock: Windows locks are per-process/per-handle. Locks are not ^^^^^^^^^^^^^^^^^^^^^^ Make that "per-process/per-file object". To clarify: The file object is the OS datastructure the handles refer to. A duplicated handle refers to the same file object, while a handle to the same file created with CreateFile refers to another file object. Duplicated handles within the same process share the locks. Different handles to the same file created with CreateFile don't share the locks. Duplicated handles to the same file object in another process (via inheritance or an explicit DuplicateHandle) don't share the locks. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Maintainer cygwin AT cygwin DOT com Red Hat -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple