From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chris Vine Newsgroups: gmane.lisp.guile.user Subject: Re: Potluck - thread safe event loop with await semantics Date: Tue, 23 Feb 2016 04:58:41 +0000 Message-ID: <20160223045841.7051f9cc@dell.homenet> References: <20160216214512.42e6fd39@bother.homenet> <878u2dosxu.fsf@gnu.org> <20160222174056.2091d806@dell.homenet> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1456203546 11228 80.91.229.3 (23 Feb 2016 04:59:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 23 Feb 2016 04:59:06 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Tue Feb 23 05:58:58 2016 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aY53q-0003Uu-2d for guile-user@m.gmane.org; Tue, 23 Feb 2016 05:58:58 +0100 Original-Received: from localhost ([::1]:53853 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aY53p-0003i7-J9 for guile-user@m.gmane.org; Mon, 22 Feb 2016 23:58:57 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47468) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aY53g-0003hQ-L0 for guile-user@gnu.org; Mon, 22 Feb 2016 23:58:49 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aY53d-0003Wj-FT for guile-user@gnu.org; Mon, 22 Feb 2016 23:58:48 -0500 Original-Received: from avasout08.plus.net ([212.159.14.20]:42202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aY53d-0003WT-9G for guile-user@gnu.org; Mon, 22 Feb 2016 23:58:45 -0500 Original-Received: from dell.homenet ([87.115.102.251]) by avasout08 with smtp id Mgyh1s0075RSpqF01gyjYl; Tue, 23 Feb 2016 04:58:43 +0000 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=O6PEx0JW c=1 sm=1 tr=0 a=LKYHlaG36XqnqgCEqUWx/g==:117 a=LKYHlaG36XqnqgCEqUWx/g==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=kj9zAlcOel0A:10 a=jFJIQSaiL_oA:10 a=Fwo3Pw8wAAAA:8 a=NEAV23lmAAAA:8 a=iLYeOzxGUpfIfSdHuoUA:9 a=CjuIK1q_8ugA:10 Original-Received: from dell.homenet (localhost [127.0.0.1]) by dell.homenet (Postfix) with ESMTP id B7594443A39 for ; Tue, 23 Feb 2016 04:58:41 +0000 (GMT) In-Reply-To: <20160222174056.2091d806@dell.homenet> X-Mailer: Claws Mail 3.13.1 (GTK+ 2.24.29; x86_64-unknown-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] X-Received-From: 212.159.14.20 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:12431 Archived-At: On Mon, 22 Feb 2016 17:40:56 +0000 Chris Vine wrote: [snip] > I have gone a little further with this and have added more convenience > wrapper procedures which makes a-sync rather easy to use. I am > preparing a guile-a-sync package which I will put on github. I have > everything going except that I am finishing off adding a wrapper for > clock_gettime() so that a monotonic clock is available for timeouts. > It also has some bug fixes for the code I posted. I have put up the code at https://github.com/ChrisVine/guile-a-sync.git It is still something of a work in progress, particularly as regards the documentation. In particular it is in need of a good set of examples of how to use the helper procedures, and also some proper unit tests. These will be forthcoming in the course of a few days or so. Chris