From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] qunlock From: "Fco. J. Ballesteros" Date: Thu, 24 Jun 2004 09:19:42 +0200 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: ab63e486-eacd-11e9-9e20-41e7f4b1d025 Maybe it's just that it's too early and I got soo few coffee, but, do meant this, didn't you? > void > A() > { qlock(a); againA: > qlock(q); > if(x) { > qunlock(q); > goto againA; > } .... > void > B() > { qlock(b); againB: > qlock(q); > if(y){ > qunlock(q); > goto againB; > } ....